minor comment change
This commit is contained in:
parent
12d881e810
commit
510cff3570
@ -132,8 +132,8 @@ size_t FSE_count(unsigned* count, unsigned* maxSymbolValuePtr, const void* src,
|
|||||||
/*! FSE_optimalTableLog():
|
/*! FSE_optimalTableLog():
|
||||||
dynamically downsize 'tableLog' when conditions are met.
|
dynamically downsize 'tableLog' when conditions are met.
|
||||||
It saves CPU time, by using smaller tables, while preserving or even improving compression ratio.
|
It saves CPU time, by using smaller tables, while preserving or even improving compression ratio.
|
||||||
@return : recommended tableLog (necessarily <= initial 'tableLog') */
|
@return : recommended tableLog (necessarily <= 'maxTableLog') */
|
||||||
unsigned FSE_optimalTableLog(unsigned tableLog, size_t srcSize, unsigned maxSymbolValue);
|
unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue);
|
||||||
|
|
||||||
/*! FSE_normalizeCount():
|
/*! FSE_normalizeCount():
|
||||||
normalize counts so that sum(count[]) == Power_of_2 (2^tableLog)
|
normalize counts so that sum(count[]) == Power_of_2 (2^tableLog)
|
||||||
|
Loading…
Reference in New Issue
Block a user