diff options
author | Yann Collet <cyan@fb.com> | 2019-05-30 23:23:53 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2019-05-30 23:23:53 (GMT) |
commit | 2f9d1736fbfe5ee92b8305a2a613ed123e03264f (patch) | |
tree | 4e9d3a9e958bdcfe9362bfffea9ac79db42a4744 /doc | |
parent | 676d46df2723c89ca7d80fd71d3c2dc6e5be82ec (diff) | |
download | lz4-2f9d1736fbfe5ee92b8305a2a613ed123e03264f.zip lz4-2f9d1736fbfe5ee92b8305a2a613ed123e03264f.tar.gz lz4-2f9d1736fbfe5ee92b8305a2a613ed123e03264f.tar.bz2 |
updated API manual
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lz4_manual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html index 091f537..083211d 100644 --- a/doc/lz4_manual.html +++ b/doc/lz4_manual.html @@ -407,7 +407,7 @@ int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); </p></pre><BR> -<pre><b>#define LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize) ( (decompressedSize) + LZ4_DECOMPRESS_INPLACE_MARGIN) </b>/**< note: presumes that compressedSize < decompressedSize */<b> +<pre><b>#define LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize) ( (decompressedSize) + LZ4_DECOMPRESS_INPLACE_MARGIN(decompressedSize)) </b>/**< note: presumes that compressedSize < decompressedSize */<b> </b></pre><BR> <pre><b>#define LZ4_COMPRESS_INPLACE_BUFFER_SIZE(maxCompressedSize) ( (maxCompressedSize) + LZ4_COMPRESS_INPLACE_MARGIN) </b>/**< maxCompressedSize is generally LZ4_COMPRESSBOUND(inputSize), but can be set to any lower value, with the risk that compression can fail (return code 0(zero)) */<b> </b></pre><BR> |