summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2020-08-10 19:52:32 (GMT)
committerGitHub <noreply@github.com>2020-08-10 19:52:32 (GMT)
commitb26c140a54a0d04fe71b0bfc3a24915b887308bc (patch)
treed75cf56ceb8c8d9307aed8dd85a95ec65f3e03f8 /lib/lz4.h
parentad14a98a0915f2bcc3cc2bbc0f2ab827fc5932c2 (diff)
parent7b1b078dfcedd169332b0583d34daa65b2c585db (diff)
downloadlz4-b26c140a54a0d04fe71b0bfc3a24915b887308bc.zip
lz4-b26c140a54a0d04fe71b0bfc3a24915b887308bc.tar.gz
lz4-b26c140a54a0d04fe71b0bfc3a24915b887308bc.tar.bz2
Merge pull request #895 from lz4/hugefast
Fix #876
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 9b3d758..6ea7cb3 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -186,7 +186,8 @@ LZ4LIB_API int LZ4_compressBound(int inputSize);
The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
An acceleration value of "1" is the same as regular LZ4_compress_default()
- Values <= 0 will be replaced by ACCELERATION_DEFAULT (currently == 1, see lz4.c).
+ Values <= 0 will be replaced by LZ4_ACCELERATION_DEFAULT (currently == 1, see lz4.c).
+ Values > LZ4_ACCELERATION_MAX will be replaced by LZ4_ACCELERATION_MAX (currently == 65537, see lz4.c).
*/
LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);