diff options
author | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2011-09-25 21:34:35 (GMT) |
---|---|---|
committer | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2011-09-25 21:34:35 (GMT) |
commit | 420248cff40ee04fef085c2029498a2423fce5cc (patch) | |
tree | fed1c510402e6bfaea361353e83baf5ee19b6a6c /lz4.c | |
parent | dab6b9d3dc9c1f6b6f30e23f44d5fc8fa445fd65 (diff) | |
download | lz4-420248cff40ee04fef085c2029498a2423fce5cc.zip lz4-420248cff40ee04fef085c2029498a2423fce5cc.tar.gz lz4-420248cff40ee04fef085c2029498a2423fce5cc.tar.bz2 |
CLI : added test mode
CLI : corrected writing to NULL within Linux
Minor : several comments were updated
git-svn-id: https://lz4.googlecode.com/svn/trunk@29 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4.c')
-rw-r--r-- | lz4.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,9 +38,9 @@ //**************************************
// Performance parameter
//**************************************
-// Lowering this value reduce memory usage
-// It may also improve speed, especially if you reach L1 cache size (32KB for Intel, 64KB for AMD)
-// Expanding memory usage typically improves compression ratio
+// Increasing this value improves compression ratio
+// Lowering this value reduces memory usage
+// Lowering may also improve speed, typically on reaching cache size limits (L1 32KB for Intel, 64KB for AMD)
// Memory usage formula for 32 bits systems : N->2^(N+2) Bytes (examples : 17 -> 512KB ; 12 -> 16KB)
#define HASH_LOG 12
|