added a few comments for clarifications

This commit is contained in:
Yann Collet
2018-10-26 15:21:52 -07:00
parent 450356b5af
commit 8d56f4baee
3 changed files with 9 additions and 3 deletions
+3 -1
View File
@@ -323,7 +323,9 @@ static void ZSTD_buildSeqTable_rle(ZSTD_seqSymbol* dt, U32 baseValue, U32 nbAddB
/* ZSTD_buildFSETable() :
* generate FSE decoding table for one symbol (ll, ml or off) */
* generate FSE decoding table for one symbol (ll, ml or off)
* cannot fail if input is valid =>
* all inputs are presumed validated at this stage */
void
ZSTD_buildFSETable(ZSTD_seqSymbol* dt,
const short* normalizedCounter, unsigned maxSymbolValue,