summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
Commit message (Collapse)AuthorAgeFilesLines
* small compression ratio and speed improvement on small filesYann Collet2016-11-081-17/+12
|
* Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2016-11-071-1/+1
|\
| * Fix LZ4_decompress_fast_continue() bugNick Terrell2016-11-051-1/+1
| | | | | | | | | | It specified the external dictionary location incorrectly. Add tests that expose this bug with both normal compilation and ASAN.
* | minor refactorYann Collet2016-11-051-1/+1
|/
* Quiet gcc-4.6.3 narrowing warningNick Terrell2016-11-041-2/+2
|
* better correctness on big-endian 64-bits platformsYann Collet2016-11-041-2/+6
|
* small compression speed improvement on 64-bits systemsYann Collet2016-11-041-8/+9
|
* updated commentsYann Collet2016-11-041-13/+12
|
* updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-031-1/+1
|
* removed test artefactsYann Collet2016-09-061-3/+2
|
* minor commentsYann Collet2016-08-201-17/+10
|
* minor refactorYann Collet2016-08-201-4/+2
|
* minor decompression speed gainsYann Collet2016-08-201-2/+5
|
* Use https wherever possibleBen Wiederhake2016-07-071-1/+1
|
* changed : default benchmark LZ4_decompress_safe()Yann Collet2016-06-291-7/+6
|
* Minor refactoring (code style)Yann Collet2016-06-291-50/+25
|
* Fixed : alignment warningYann Collet2016-06-291-3/+10
|
* minor refactoringYann Collet2016-06-291-10/+9
|
* very minor decompression speed gainYann Collet2016-06-291-2/+2
|
* minor code refactoringYann Collet2016-06-291-45/+25
|
* minor compression speed improvementYann Collet2016-06-291-3/+4
|
* minor refactoringYann Collet2016-06-291-8/+10
|
* minor refactoring (coding style)Yann Collet2016-06-291-140/+82
|
* fixed non-C99 compilersIrwan Djajadi2016-04-191-2/+4
|\
| * fixed non-C99 compilerIrwan Djajadi2016-04-191-3/+5
| |
* | Merge branch 'heapmode_alloc_failure_fix' into devIrwan Djajadi2016-04-191-0/+10
|\ \ | |/
| * alloc failure fixIrwan Djajadi2016-04-181-0/+10
| |
* | lz4cli: print library versionJohn Zhuge2016-04-011-0/+1
| |
* | Allow for safe in-place decodingJulius Werner2016-02-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a check to allow safe "in-place" decoding (meaning that the beginning of the source buffer partially overlaps the end of the destination buffer). This is usually possible as long as the output stops at least 15 bytes before the end of the input buffer (7 to account for the extra spill from LZ4_wildCopy, 4 for a possible block checksum, and 4 for the terminating block header), but in some pathological edge cases it could be possible for the output stream to overwrite a byte in the input stream before it gets decoded. With this patch the decoder will reliably detect those cases and return a decoding error. Signed-off-by: Julius Werner <jwerner@chromium.org>
* | heapmode macro option for lz4hcYann Collet2015-10-211-3/+3
| |
* | Updated Makefile and .travisYann Collet2015-09-011-1/+8
| |
* | New unalign access methodYann Collet2015-08-191-12/+41
| |
* | Slightly improved compression speed on ARMv6Yann Collet2015-08-161-11/+11
| |
* | Improved performance on ARMv6Yann Collet2015-08-161-15/+35
| |
* | minor simplification lz4_readarch()Yann Collet2015-08-061-12/+4
| |
* | minor refactorYann Collet2015-07-161-16/+15
| |
* | Slightly improved decompression speedYann Collet2015-07-161-5/+6
| | | | | | Slightly decreased decompression stack usage in 64-bits mode
* | sligthly improved decompression speedYann Collet2015-07-161-12/+12
|/
* Performance fix : big compression speed boost for clang (+30%)Yann Collet2015-05-211-1/+1
|
* Updated a few commentsYann Collet2015-05-121-1/+1
|
* Added : LZ4_compress_destSize()Yann Collet2015-05-061-4/+217
|
* Added compilation flag -Wcast-qualYann Collet2015-05-061-13/+13
|
* Fixed minor Visual warningYann Collet2015-05-031-1/+1
|
* New lz4 API, using LZ4_compress_fast()Yann Collet2015-05-031-60/+41
|
* Fixed bug 9318Yann Collet2015-05-021-4/+6
|
* streaming API : Improved ring buffer managementYann Collet2015-04-241-2/+1
|
* Added LZ4_compress_fast_extState()Yann Collet2015-04-231-16/+18
|
* Removed LZ4_compress() (obsolete) from lz4Yann Collet2015-04-211-1/+1
|
* Replace GCC_VERSION with LZ4_GCC_VERSIONTakayuki MATSUOKA2015-04-141-6/+6
|
* Fixed issue #84Yann Collet2015-04-121-6/+7
|