Switch to using ZSTD_count instead of function pointer
This commit is contained in:
@@ -12,18 +12,17 @@
|
||||
|
||||
// Defines the size of the hash table.
|
||||
// Currently this should be less than WINDOW_SIZE_LOG + 4?
|
||||
#define LDM_MEMORY_USAGE 24
|
||||
#define LDM_MEMORY_USAGE 23
|
||||
|
||||
//#define LDM_LAG (1 << 23)
|
||||
//#define LDM_LAG (1 << 20)
|
||||
#define LDM_LAG 0
|
||||
#define LDM_LAG (0)
|
||||
|
||||
#define LDM_WINDOW_SIZE_LOG 28
|
||||
#define LDM_WINDOW_SIZE (1 << (LDM_WINDOW_SIZE_LOG))
|
||||
|
||||
//These should be multiples of four (and perhaps set to the same values?).
|
||||
#define LDM_MIN_MATCH_LENGTH 512
|
||||
#define LDM_HASH_LENGTH 512
|
||||
#define LDM_MIN_MATCH_LENGTH 64
|
||||
#define LDM_HASH_LENGTH 64
|
||||
|
||||
typedef struct LDM_compressStats LDM_compressStats;
|
||||
typedef struct LDM_CCtx LDM_CCtx;
|
||||
|
||||
Reference in New Issue
Block a user