summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
Commit message (Expand)AuthorAgeFilesLines
...
* Split lz4CtxLevel into Two FieldsW. Felix Handte2018-03-131-17/+10
* Another Allocation Fail CheckW. Felix Handte2018-03-131-1/+2
* Renames and Comment FixesW. Felix Handte2018-03-121-1/+1
* Hoist LZ4F Dictionary Setup into Helper LZ4F_applyCDict()W. Felix Handte2018-03-121-47/+25
* Minor Style FixesW. Felix Handte2018-03-121-9/+9
* Replace calloc() Calls With malloc() Where PossibleW. Felix Handte2018-03-121-15/+16
* Make LZ4F_compressFrame_usingCDict Take a Compression ContextW. Felix Handte2018-03-121-22/+53
* Set Dictionary Context Pointer Rather than Copying the Context InW. Felix Handte2018-03-121-6/+29
* Only Re-Alloc / Reset When Needed When Switching Between Regular and High Com...W. Felix Handte2018-03-121-13/+27
* Avoid Resetting the Context When PossibleW. Felix Handte2018-03-121-2/+19
* refactored frameCompress exampleYann Collet2018-01-311-1/+2
* lz4frame : removed some intermediate stage from LZ4F_decompress()Yann Collet2018-01-141-16/+6
* ensure a ptr is non-nullYann Collet2018-01-141-0/+9
* modified formulation for LZ4F_compressBound()Yann Collet2018-01-141-5/+5
* [lz4f] Skip memcpy() on empty dictionaryNick Terrell2018-01-051-2/+4
* minor comment editYann Collet2017-11-031-4/+4
* fixed decoding block checksum in lz4frameYann Collet2017-10-041-4/+3
* minor lz4frame code refactorYann Collet2017-09-231-50/+54
* Fix Segfault When Copying DictW. Felix Handte2017-09-221-0/+1
* fix : asan error in dctx, due to increased maximum frame header size, reporte...v1.8.0Yann Collet2017-08-171-3/+3
* 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
* 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
* added dictID inside LZ4F_frameInfo_tYann Collet2017-08-091-13/+28
* Fix gcc7 Wimplicit-fallthrough warningsChocobo12017-06-191-3/+3
* 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
* Safer LZ4_getFrameInfo()Yann Collet2017-03-291-46/+66
* added `extern C` for lz4.h static sectionYann Collet2017-03-171-21/+22
* updated a few macros namesYann Collet2016-12-221-7/+7
* LZ4F_compressBound(0) provides upper bound for LZ4F_flush() and LZ4F_compress...Yann Collet2016-12-211-4/+11
* 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 i...Yann Collet2016-11-041-124/+92