From 1db6f22f34fb7cd3b771668af378b7ac45a8a56c Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 17 Feb 2015 13:38:44 +0100 Subject: [PATCH] Removed useless constants --- lib/zstd.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/zstd.c b/lib/zstd.c index 61beaf304..51d366d31 100644 --- a/lib/zstd.c +++ b/lib/zstd.c @@ -129,9 +129,6 @@ static const U32 ZSTD_magicNumber = 0xFD2FB51C; /* Initial (limited) frame for #define HASH_TABLESIZE (1 << HASH_LOG) #define HASH_MASK (HASH_TABLESIZE - 1) -#define MAXD_LOG 16 -#define MAX_DISTANCE ((1 << MAXD_LOG) - 1) - #define KNUTH 2654435761 #define BIT7 128 @@ -144,7 +141,7 @@ static const U32 ZSTD_magicNumber = 0xFD2FB51C; /* Initial (limited) frame for #define GB *(1U<<30) #define BLOCKSIZE (128 KB) /* define, for static allocation */ -static const U32 g_maxDistance = 512 KB; +static const U32 g_maxDistance = 4 * BLOCKSIZE; static const U32 g_maxLimit = 1 GB; static const U32 g_searchStrength = 8;