From 558c85ef57ad15b5a562a5e4d1e3dfb42259570f Mon Sep 17 00:00:00 2001 From: Geoffrey Allott Date: Sat, 3 Sep 2022 23:43:48 +0100 Subject: [PATCH] reduce max_symbols to 256 --- src/tANS_constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tANS_constants.h b/src/tANS_constants.h index 462c18b..0cd84a9 100644 --- a/src/tANS_constants.h +++ b/src/tANS_constants.h @@ -3,5 +3,5 @@ #define TANS_MAGIC 0xfac0162a #define TANS_LOG2_MAX_TBLSZ 12 #define TANS_MAX_TBLSZ (1 << TANS_LOG2_MAX_TBLSZ) -#define TANS_MAX_SYMBOLS 1024 +#define TANS_MAX_SYMBOLS 256 #define TANS_MULTI_MAX_AUX 8 -- 2.34.1