summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed decoding block checksum in lz4frameYann Collet2017-10-041-4/+3
|
* minor lz4frame code refactorYann Collet2017-09-231-50/+54
| | | | | try to improve code readability. minor optimization on condition to preserve history.
* Fix Segfault When Copying DictW. Felix Handte2017-09-221-0/+1
| | | | dctx must have been initialized before we can copy the dictionary in.
* fix : asan error in dctx, due to increased maximum frame header size, ↵v1.8.0Yann Collet2017-08-171-3/+3
| | | | reported by Craig Young
* restored block checksum capability at lz4frame API levelYann Collet2017-08-121-315/+384
|
* implemented lz4frame decompression APIYann Collet2017-08-101-54/+52
|
* support dictionary compression with independent blocksYann Collet2017-08-101-31/+51
|
* dictionary compression correctly uses compression levelYann Collet2017-08-101-10/+13
| | | | Not obvious : copying the state was copying cdict's compression level
* fixed C++ conversion warningsYann Collet2017-08-101-2/+2
|
* fixed uninitialization error in lz4frameYann Collet2017-08-101-4/+5
|
* implemented dictionary compression in lz4frameYann Collet2017-08-091-66/+161
| | | | | note : only compression API is implemented and tested still to do : decompression API
* added dictID inside LZ4F_frameInfo_tYann Collet2017-08-091-13/+28
| | | | | Compressor can set dictID on LZ4F_compressBegin() Decompressor can retrieve it using LZ4F_getFrameInfo()
* Fix gcc7 Wimplicit-fallthrough warningsChocobo12017-06-191-3/+3
| | | | | For the default Wimplicit-fallthrough=3 level, the comment should start with "fall*"
* added test for LZ4F_resetDecompressionContext()Yann Collet2017-05-101-22/+44
|
* expose LZ4F_resetDecompressionContext()Yann Collet2017-05-101-65/+69
|
* lz4frame : Added negative compression levelsYann Collet2017-04-091-6/+6
|
* ensure lz4f_cctx internal buffer size remain valid in case of malloc errorYann Collet2017-04-091-1/+2
|
* lz4frame : control lz4 context creation successYann Collet2017-04-091-6/+7
|
* fixed minor Visual warningYann Collet2017-03-291-1/+1
|
* Improved comments on LZ4F_getFrameInfo()Yann Collet2017-03-291-0/+6
| | | | and added LZ4F_resetCompressionContext()
* Safer LZ4_getFrameInfo()Yann Collet2017-03-291-46/+66
| | | | | LZ4_getFrameInfo() is now guaranteed to keep dctx state clean, even in case of failure.
* added `extern C` for lz4.h static sectionYann Collet2017-03-171-21/+22
| | | | should make the file more compatible with C++ compiler, such as Visual or g++
* updated a few macros namesYann Collet2016-12-221-7/+7
|
* LZ4F_compressBound(0) provides upper bound for LZ4F_flush() and ↵Yann Collet2016-12-211-4/+11
| | | | LZ4F_compressEnd() [#290, suggested by @vtermanis]
* fixed a limit case scenarioYann Collet2016-11-161-1/+2
|
* fixed minor coverity warningsYann Collet2016-11-151-19/+18
|
* enabled deprecation warnings on remaining obsolete functionsYann Collet2016-11-121-4/+4
|
* fixed conversion warningsYann Collet2016-11-111-2/+2
|
* updated frametestYann Collet2016-11-111-46/+54
|
* DLL exports only functions defined in liblz4.defPrzemyslaw Skibinski2016-11-091-2/+5
|
* introduced LZ4_COMPILED_AS_DLLPrzemyslaw Skibinski2016-11-091-0/+7
|
* err0r(LZ4F_errorCodes code) uses ptrdiff_tPrzemyslaw Skibinski2016-11-081-1/+1
|
* minor code refactoringYann Collet2016-11-041-37/+43
|
* fix #198 : no longer requires to restart streaming decompression from where ↵Yann Collet2016-11-041-124/+92
| | | | | | | it stopped. It permits relocating remaining data into another memory space. Still, the same content must be presented.
* fixed strict warningsYann Collet2016-11-041-1/+1
|
* updated commentsYann Collet2016-11-041-0/+2
|
* updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-031-1/+1
|
* Merge pull request #236 from inikep/devYann Collet2016-09-061-0/+1
|\ | | | | fix bug #232 at https://github.com/Cyan4973/lz4/issues/232
| * fix bug #232 at https://github.com/Cyan4973/lz4/issues/232inikep2016-09-061-0/+1
| |
* | removed test artefactsYann Collet2016-09-061-1/+1
|/
* -b# and -e# options from zstdinikep2016-09-021-8/+7
|
* Fixed #157 : LZ4F_getFrameInfo() fails on valid null-content frameYann Collet2016-08-111-105/+129
|
* Updated xxhash library to v0.6.1Yann Collet2016-06-291-210/+119
|
* Fixed a few minor visual analyzer warningsYann Collet2015-06-291-2/+2
|
* Added compilation flag -Wcast-qualYann Collet2015-05-061-10/+10
|
* Updated lz4hc APIYann Collet2015-05-031-2/+2
|
* New lz4 API, using LZ4_compress_fast()Yann Collet2015-05-031-2/+2
|
* moved lz4frame context types to incomplete typedefYann Collet2015-04-271-31/+30
|
* Modified lz4frame context typedef, to enforce stricter alignment conditionYann Collet2015-04-241-3/+4
|
* Frame content size disabled by default when using LZ4F_compressFrame(), to ↵Yann Collet2015-04-211-1/+0
| | | | be in better coherence with the advanced API LZ4F_compress_update()