summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #28 from Cyan4973/devr123Yann Collet2014-09-251-1/+1
|\ | | | | updated comment on compressionLevel field
| * updated comment on compressionLevel fieldYann Collet2014-09-241-1/+1
| |
* | Merge pull request #27 from Cyan4973/devYann Collet2014-09-2318-134/+2394
|\ \ | |/ | | lz4frame
| * fixed : clang warningsYann Collet2014-09-226-601/+628
| |
| * Added : suooirt for s390x, thanks to Nobuhiro IwamatsuYann Collet2014-09-227-51/+55
| | | | | | Multiple warning fixes for Visual Studio 2012
| * LZ4F_compressFrame : fix potential crash on selecting custom preferencesYann Collet2014-09-222-1/+9
| | | | | | frame fuzzer tests : new random tests using LZ4F_compressFrame
| * LZ4F_compressFrame() : auto-resize block size when unnecessarily largeYann Collet2014-09-221-3/+20
| |
| * Slightly improved decompression speed (linkedBlockMode, small frames primarily)Yann Collet2014-09-221-1/+2
| |
| * LZ4F_getFrameInfo() No longer requires to continue decoding at address after ↵Yann Collet2014-09-221-2/+21
| | | | | | | | | | header Slightly improved LZ4F_decompress() speed (less dictionary copy)
| * lz4frame : support stableDst optionYann Collet2014-09-215-100/+235
| | | | | | | | | | | | Multiple bugfixes within lz4frame decompression Small decompression speed improvements Improved fuzzer test, with more thorough and complex tests
| * small improvements to lz4frame compressionYann Collet2014-09-144-88/+90
| |
| * changed : lz4 test mode (-t) to no longer ask for confirmation, as suggested ↵Yann Collet2014-09-131-1/+1
| | | | | | | | by Nguyen Thary
| * changed xxhash directoryYann Collet2014-09-134-177/+9
| | | | | | changed makefile
| * Merge pull request #26 from Cyan4973/frameYann Collet2014-09-139-64/+2304
| |\ | | | | | | Frame
| | * Restored variable output size fuzzer testYann Collet2014-09-132-12/+16
| | | | | | | | | | | | Quickfix frame decompression Small speed optimization frame decompression
| | * Frame decompression speed optimizationYann Collet2014-09-134-23/+83
| | |
| | * fullbench : added benchmark for LZ4F_decompress()Yann Collet2014-09-133-37/+62
| | |
| | * LZ4F_getFrameInfo() : provides srcSize hint like LZ4F_decompress()Yann Collet2014-09-132-4/+9
| | |
| | * LZ4F_decompressFrame : implemented srcSizeHint as function resultYann Collet2014-09-133-94/+134
| | |
| | * lz4frame : implemented option stableSrcYann Collet2014-09-133-21/+28
| | | | | | | | | Improved LZ4_compressFrame() speed
| | * lz4frame : autoflush mode : saves memory, and improves compression speedYann Collet2014-09-124-65/+95
| | | | | | | | | LZ4F_getFrameInfo() fix, thanks to Christopher Jackson
| | * slightly improved frame compression speedYann Collet2014-09-113-28/+28
| | |
| | * Improved lz4frame compression speedYann Collet2014-09-105-99/+68
| | | | | | | | | Added : fullbench test -c14 (LZ4F_compressFrame)
| | * More tests : random flushesYann Collet2014-09-102-4/+15
| | |
| | * Fix : streaming mode bug (re-using context & buffers)Yann Collet2014-09-106-20/+21
| | |
| | * Added : streaming modeYann Collet2014-09-094-46/+132
| | |
| | * Added : valgrind verification for frametestYann Collet2014-09-071-1/+2
| | |
| | * minor allocation correction (compressBegin)Yann Collet2014-09-071-0/+1
| | |
| | * API change : compressionContext more easily reusableYann Collet2014-09-073-39/+46
| | |
| | * Added : fuzzer : ability to jump to specified testNbYann Collet2014-09-071-13/+17
| | |
| | * Added : variable dstBuffer size decompression testYann Collet2014-09-071-7/+6
| | |
| | * More complex compression testsYann Collet2014-09-071-22/+45
| | |
| | * Improved frame decompression testYann Collet2014-09-062-8/+32
| | | | | | | | | Fixed : frame decompression bug
| | * minor frametest display improvementYann Collet2014-09-061-20/+25
| | |
| | * minor test code refactoringYann Collet2014-09-061-13/+15
| | |
| | * More tests (variation of blocksize & checksum)Yann Collet2014-09-062-4/+8
| | | | | | | | | fixed : checksum error on dealing with uncompressed blocks
| | * Added some more testsYann Collet2014-09-052-36/+152
| | |
| | * Implemented Content Checksum Verification within LZ4F_decompress()Yann Collet2014-09-052-46/+53
| | |
| | * Added : xxhash.h at root, for compilationYann Collet2014-09-041-0/+168
| | |
| | * fixed : LZ4F_decompress()Yann Collet2014-09-043-46/+91
| | | | | | | | | more decompress tests
| | * Completed first version of lz4frame decompressYann Collet2014-09-034-122/+295
| | | | | | | | | Added a first decompression test
| | * Added : preliminary frame decompression functionYann Collet2014-09-015-38/+273
| | |
| | * upgraded lz4frame compression testsYann Collet2014-08-313-19/+79
| | |
| | * lz4frame compression API v1 completedYann Collet2014-08-304-84/+703
| | | | | | | | | Added : test program frametest
| | * fix : lz4frame : added default blockSizeIDYann Collet2014-08-291-0/+3
| | |
| | * lz4frame minor API fixes (pointers)Yann Collet2014-08-292-18/+289
| | | | | | | | | lz4frame.c first example code (incomplete)
| | * minor lz4frame API update : errorCodes & frameInfoYann Collet2014-08-291-23/+26
| | |
| | * Merge branch 'frame' of https://github.com/Cyan4973/lz4 into frameYann Collet2014-08-281-0/+232
| | |\ | |/ / |/| |
| | * Merge pull request #24 from Cyan4973/devCyan49732014-08-2817-988/+1676
| | |\ | | | | | | | | Catch up r122
| | * | lz4frame API update : introducing LZ4F_getHeaderInfo()Yann Collet2014-08-281-36/+24
| | | |