summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-09-07 22:44:19 (GMT)
committerYann Collet <cyan@fb.com>2018-09-07 22:44:19 (GMT)
commitbf614d3c51c9774df0f64285db314545f05bb5ef (patch)
tree86d07ae7e762d6e36a92b276dabb28805b215fc7 /lib/lz4.h
parente32766cc345fb811cdcf25192144c85734bc636e (diff)
downloadlz4-bf614d3c51c9774df0f64285db314545f05bb5ef.zip
lz4-bf614d3c51c9774df0f64285db314545f05bb5ef.tar.gz
lz4-bf614d3c51c9774df0f64285db314545f05bb5ef.tar.bz2
first sketch for a byte-accurate partial decoder
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 9d3890a..ce4d033 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -272,12 +272,12 @@ LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, in
* @return : size of compressed block
* or 0 if there is an error (typically, cannot fit into 'dst').
*
- * Note 1 : Each invocation to LZ4_compress_fast_continue() will generate a new block.
+ * Note 1 : Each invocation to LZ4_compress_fast_continue() generates a new block.
* Each block has precise boundaries.
* It's not possible to append blocks together and expect a single invocation of LZ4_decompress_*() to decompress them together.
* Each block must be decompressed separately, calling LZ4_decompress_*() with associated metadata.
*
- * Note 2 : The previous 64KB of source data is assumed to remain present, unmodified, at same address in memory!
+ * Note 2 : The previous 64KB of source data is __assumed__ to remain present, unmodified, at same address in memory!
*
* Note 3 : When input is structured as a double-buffer, each buffer can have any size, including < 64 KB.
* Make sure that buffers are separated, by at least one byte.