From e48f4ebeb11eef317357dcc32c769dc6d4f66bcf Mon Sep 17 00:00:00 2001 From: kuntz <54650746+kun1z@users.noreply.github.com> Date: Tue, 2 Feb 2021 11:51:10 -0600 Subject: [PATCH] 15th cut test --- compress.c | 4 ++-- compress.h | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/compress.c b/compress.c index d3305af..f7ca42a 100755 --- a/compress.c +++ b/compress.c @@ -2,8 +2,8 @@ // Copyright © 2021 by Brett Kuntz. All rights reserved. //---------------------------------------------------------------------------------------------------------------------- #include "compress.h" -#define CUTS_LENGTH 12 -static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, 6, 5, -1 }; +#define CUTS_LENGTH 14 +static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, 6, 5, 5, 5, -1 }; //---------------------------------------------------------------------------------------------------------------------- //#include si main(si argc, s8 ** argv) diff --git a/compress.h b/compress.h index 2af170d..36a0b26 100755 --- a/compress.h +++ b/compress.h @@ -30,8 +30,10 @@ typedef float r32 ; typedef double r64 ; // 9th cut is 7 (p0.02734375) // 10th cut is 6 (p0.02343750) // 11th cut is 6 (p0.02343750) -// 12th cut is 5 (p0.01953125) -// 13th cut is ?? +// 12th cut is 5 +// 13th cut is 5 +// 14th cut is 4 or 5 (we're going with 5 for now) +// 15th cut is ??? #include #include #include