summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
Commit message (Collapse)AuthorAgeFilesLines
* 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()
* Removed obsolete functions from lz4 cliYann Collet2015-04-211-4/+4
|
* Updated LZ4F_freeDecompressionContext(), to provide stage hint as resultYann Collet2015-04-201-1/+3
|
* Changed LZ4F compressionLevel from unsigned to signed, in anticipation for ↵Yann Collet2015-04-201-6/+6
| | | | LZ4_compress_fast() integration.
* Updated LZ4F_getFrameInfo() behavior, related to uncomplete frame header ↵Yann Collet2015-04-191-37/+45
| | | | decoding attempts
* Updated lz4frame error namesYann Collet2015-04-151-10/+10
|
* Issue#90 : Add LZ4F_ prefixTakayuki MATSUOKA2015-04-141-58/+58
| | | | | - Add LZ4F_ prefix to LZ4 frame related enums. - Also add conditional macro LZ4F_DISABLE_OLD_ENUMS for testing and users who prefer strict prefixes.
* Revert "Revert "Add more descriptive frame errors""Charles Allen2015-04-141-7/+7
| | | | This reverts commit 5a6652708439800e30d21e0cd24ed15cfb745a8b.
* Changes LZ4F_compressBound() definition using NULL prefsPtr to cover worst ↵Yann Collet2015-04-141-1/+2
| | | | case instead of default.
* Fixed issue #84Yann Collet2015-04-121-3/+3
|
* Fixed : a few minor coverity warningsYann Collet2015-04-121-6/+12
|
* Fixed a few warnings from -fsanitize=undefinedYann Collet2015-04-091-8/+9
|
* Fixed issue 160, reported by Eric BergeYann Collet2015-04-011-1/+1
|
* Fixed : Windows compilationYann Collet2015-03-311-2/+4
| | | Added : Appveyor badge