summaryrefslogtreecommitdiffstats
path: root/doc/lz4frame_manual.html
Commit message (Collapse)AuthorAgeFilesLines
* updated documentation in anticipation for `v1.9.4` releaseYann Collet2022-08-111-48/+78
|
* minor : proper interface for LZ4F_getBlockSize()Yann Collet2022-07-131-4/+12
| | | | | and proper documentation. Also : updated manual
* review: fix findingsAlexander Mohr2022-07-051-0/+1
| | | | | | | | | * 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>
* review: Fix review findingsAlexander Mohr2022-06-101-23/+24
| | | | | | This commit fixes the review findings Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
* review: Fix review findingsAlexander Mohr2022-06-101-12/+25
| | | | | | This commit fixes the review findings Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
* frame-api: add method to insert uncomressed dataAlexander Mohr2022-06-091-0/+5
| | | | | | | | new method `uncompressed_update` allows to insert blocks without compression into the lz4 stream. The usage is documented in the frameCompress example Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
* update library version to v1.9.4Yann Collet2022-04-171-3/+3
| | | | to reduce confusion in traces between dev branch and latest v1.9.3 release.
* make UNAME externally definableYann Collet2021-08-161-3/+3
| | | | | | | on top of providing a central definition place, which eases maintenance, it might also help for #1021. Also : updated doc
* updated license & header datesYann Collet2020-11-251-1/+2
|
* update obsolete section documentationYann Collet2020-11-081-2/+4
| | | | | and update manuals. fix #712
* bump version numberYann Collet2020-09-291-3/+3
| | | | to v1.9.3
* bumped version number to v1.9.2Yann Collet2019-07-011-2/+2
| | | | to reduce risks that future bug reports in `dev` branch report `v1.9.1` as the failing version.
* bumped version numberYann Collet2019-04-191-2/+2
| | | | to v1.9.1
* improved documentation for LZ4 dictionary compressionYann Collet2019-04-111-1/+1
|
* introduce LZ4_DISTANCE_MAX build macroYann Collet2019-04-111-14/+47
| | | | | | | | | | make it possible to generate LZ4-compressed block with a controlled maximum offset (necessarily <= 65535). This could be useful for compatibility with decoders using a very limited memory budget (<64 KB). Answer #154
* make `_fast*()` decoder generate a deprecation warningYann Collet2019-04-041-2/+2
| | | | updated modification
* updated code documentationYann Collet2018-10-151-8/+14
| | | | to clarify #589
* avoid final trailing comma for enum listsYann Collet2018-09-131-7/+10
| | | | | | | as detected in #485 by @JoachimSchneider. Refactored the c_standards tests so that these issues get automatically detected in CI tests.
* updated documentation regarding dictionary compressionYann Collet2018-09-051-2/+2
| | | | | | following suggestion from @stbrumme (#558) Also : bumped version number, regenerated man page and html doc
* ensure favorDecSpeed is properly initializedYann Collet2018-04-271-4/+59
| | | | | | | also : - fix a potential malloc error - proper use of ALLOC macro inside lz4hc - update html API doc
* minor length reduction of several large linesYann Collet2018-04-181-21/+29
|
* updated LZ4F_compressBound() documentationYann Collet2018-02-281-3/+6
| | | | to clarify it includes potentially buffered data.
* bumped version number to v1.8.2Yann Collet2018-02-261-2/+2
| | | | updated NEWS was current progresses
* refactored frameCompress exampleYann Collet2018-01-311-20/+24
| | | | to better reflect LZ4F API usage.
* nicer console message for `make clean`Yann Collet2018-01-141-12/+17
|
* restored block checksum capability at lz4frame API levelYann Collet2017-08-121-10/+15
|
* implemented lz4frame decompression APIYann Collet2017-08-101-5/+5
|
* support dictionary compression with independent blocksYann Collet2017-08-101-27/+28
|
* dictionary compression correctly uses compression levelYann Collet2017-08-101-1/+1
| | | | Not obvious : copying the state was copying cdict's compression level
* implemented dictionary compression in lz4frameYann Collet2017-08-091-17/+19
| | | | | note : only compression API is implemented and tested still to do : decompression API
* fixed frameCompress exampleYann Collet2017-08-091-16/+19
|
* added test for LZ4F_resetDecompressionContext()Yann Collet2017-05-101-6/+3
|
* bumped version number to 1.8.0Yann Collet2017-05-101-2/+2
| | | | | due to addition of prototype LZ4F_resetDecompressionContext()
* updated MakefileYann Collet2017-05-101-23/+52
| | | | | to automatically build manual files with make all
* added lz4frame_manual.htmlPrzemyslaw Skibinski2017-01-231-0/+240