minor refactor to blocksplit

notably simplication of ZSTD_deriveSeqStoreChunk()
This commit is contained in:
Yann Collet
2022-01-27 20:24:35 -08:00
parent a7285955f1
commit 9a68840176
2 changed files with 23 additions and 25 deletions
+5 -5
View File
@@ -299,11 +299,11 @@ typedef enum {
typedef struct {
seqDef* sequencesStart;
seqDef* sequences; /* ptr to end of sequences */
BYTE* litStart;
BYTE* lit; /* ptr to end of literals */
BYTE* llCode;
BYTE* mlCode;
BYTE* ofCode;
BYTE* litStart;
BYTE* lit; /* ptr to end of literals */
BYTE* llCode;
BYTE* mlCode;
BYTE* ofCode;
size_t maxNbSeq;
size_t maxNbLit;