diff options
author | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2012-08-01 23:51:55 (GMT) |
---|---|---|
committer | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2012-08-01 23:51:55 (GMT) |
commit | 89921dd39eaa4910eda636f68d3cb5f960b616ac (patch) | |
tree | 223dd85afc35f7a58f83f086d7c40465a7ac8cdf /lz4.h | |
parent | 84004b90159468e4d4984fcd6ee1dbb5ea53c982 (diff) | |
download | lz4-89921dd39eaa4910eda636f68d3cb5f960b616ac.zip lz4-89921dd39eaa4910eda636f68d3cb5f960b616ac.tar.gz lz4-89921dd39eaa4910eda636f68d3cb5f960b616ac.tar.bz2 |
Fixed : small compression speed hit on GCC v4.5 introduced by r71
git-svn-id: https://lz4.googlecode.com/svn/trunk@72 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4.h')
-rw-r--r-- | lz4.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,7 +49,7 @@ int LZ4_uncompress (const char* source, char* dest, int osize); LZ4_compress() :
Compresses 'isize' bytes from 'source' into 'dest'.
Destination buffer must be already allocated,
- and must be sized to handle worst cases situations (input data not compressible)
+ its minimum size must handle worst cases situations (input data not compressible)
Worst case size evaluation is provided by macro LZ4_compressBound()
isize : is the input size. Max supported value is ~1.9GB
@@ -93,7 +93,7 @@ LZ4_compress_limitedOutput() : isize : is the input size. Max supported value is ~1.9GB
maxOutputSize : is the size of the destination buffer (which must be already allocated)
- return : the number of bytes written in buffer dest
+ return : the number of bytes written in buffer 'dest'
or 0 if the compression fails
*/
|