Merge pull request #2733 from terrelln/huf-cspeed

[HUF] Improve Huffman encoding speed
This commit is contained in:
Nick Terrell
2021-08-03 12:59:54 -04:00
committed by GitHub
10 changed files with 539 additions and 98 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ typedef struct {
} ZSTD_localDict;
typedef struct {
HUF_CElt CTable[HUF_CTABLE_SIZE_U32(255)];
HUF_CElt CTable[HUF_CTABLE_SIZE_ST(255)];
HUF_repeat repeatMode;
} ZSTD_hufCTables_t;