diff options
author | Yann Collet <cyan@fb.com> | 2017-11-03 18:28:28 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2017-11-03 18:28:28 (GMT) |
commit | 1025546347d75ec94f584294a36132527a45d46c (patch) | |
tree | 2609790bfc414d5cb1b2ca8dd8ef1b276cb7fb4b /lib/lz4hc.h | |
parent | a1f4a0d98361c6ff95833dedba07a9d5a15cfa5e (diff) | |
download | lz4-1025546347d75ec94f584294a36132527a45d46c.zip lz4-1025546347d75ec94f584294a36132527a45d46c.tar.gz lz4-1025546347d75ec94f584294a36132527a45d46c.tar.bz2 |
unified HC levels
LZ4_setCompressionLevel() can be users accross the whole range of HC levels
No more transition issue between Optimal and HC modes
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r-- | lib/lz4hc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h index 13a0179..04153e6 100644 --- a/lib/lz4hc.h +++ b/lib/lz4hc.h @@ -265,8 +265,7 @@ int LZ4_compress_HC_continue_destSize(LZ4_streamHC_t* LZ4_streamHCPtr, /*! LZ4_setCompressionLevel() : v1.8.0 (experimental) * It's possible to change compression level between 2 invocations of LZ4_compress_HC_continue*(), - * but it requires to stay in the same mode (aka 1-10 or 11-12). - * This function ensures this condition. + * though it requires to stay in the same mode (aka fast or HC). */ void LZ4_setCompressionLevel(LZ4_streamHC_t* LZ4_streamHCPtr, int compressionLevel); |