]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor comment change 212/head
authorYann Collet <yann.collet.73@gmail.com>
Thu, 16 Jun 2016 14:39:55 +0000 (16:39 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Thu, 16 Jun 2016 14:39:55 +0000 (16:39 +0200)
lib/common/fse.h

index 6be3e5aa0410851ef47f16f71e7e09da1a101aae..e711d013547da10d0765986152313dbc6b93b30d 100644 (file)
@@ -132,8 +132,8 @@ size_t FSE_count(unsigned* count, unsigned* maxSymbolValuePtr, const void* src,
 /*! FSE_optimalTableLog():
     dynamically downsize 'tableLog' when conditions are met.
     It saves CPU time, by using smaller tables, while preserving or even improving compression ratio.
-    @return : recommended tableLog (necessarily <= initial 'tableLog') */
-unsigned FSE_optimalTableLog(unsigned tableLog, size_t srcSize, unsigned maxSymbolValue);
+    @return : recommended tableLog (necessarily <= 'maxTableLog') */
+unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue);
 
 /*! FSE_normalizeCount():
     normalize counts so that sum(count[]) == Power_of_2 (2^tableLog)