diff options
author | Alexander Mohr <alexander.m.mohr@mercedes-benz.com> | 2022-07-05 18:52:50 (GMT) |
---|---|---|
committer | Alexander Mohr <alexander.m.mohr@mercedes-benz.com> | 2022-07-05 19:14:34 (GMT) |
commit | 0ac3c74de1b6de584c361f3e9485dde35f10c756 (patch) | |
tree | 24ad2216f485618fb07a09fd4e1c67bf352dc487 /doc | |
parent | 42eb47d42f041054140b8e08ffc6ba85e9f092f2 (diff) | |
download | lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.zip lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.gz lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.bz2 |
review: fix findings
* replace assert with test for LZ4F_uncompressedUpdate
* update documentation to incldue correct docstring
* remove unecessary entry point
* remove compress_linked_block_mode from fuzzing test
Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lz4frame_manual.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/lz4frame_manual.html b/doc/lz4frame_manual.html index c55c6e9..0ae5150 100644 --- a/doc/lz4frame_manual.html +++ b/doc/lz4frame_manual.html @@ -355,6 +355,7 @@ LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx); After an error, the state is left in a UB state, and must be re-initialized or freed. If previously a compressed block was written, buffered data is flushed before appending uncompressed data is continued. + This is only supported when LZ4F_blockIndependent is used `cOptPtr` is optional : NULL can be provided, in which case all options are set to default. @return : number of bytes written into `dstBuffer` (it can be zero, meaning input data was just buffered). or an error code if it fails (which can be tested using LZ4F_isError()) |