summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update README.mdChocobo12017-06-191-3/+2
| | | | | Update appveyor badge URL Remove empty line
* made level 10 a bit fasterYann Collet2017-06-141-6/+7
| | | | | | | at the expense of a little bit of compression ratio. Now speed is intermediate on calgary corpus : 25 - 12 - 8 - 3
* -g compilation flag not by default for lz4 cliYann Collet2017-06-132-3/+2
|
* clarified lz4frame api comment (#350)Yann Collet2017-06-131-15/+17
|
* report where decompression ends (#313)Yann Collet2017-06-122-39/+63
| | | | | suggested by @ehem note : only works for files < 2 GB
* updated NEWSYann Collet2017-06-122-3/+4
|
* fixed minor scan-build warningYann Collet2017-06-081-0/+1
|
* refactored simple_buffer.c example (#363)Yann Collet2017-06-083-43/+50
|
* added a paragraph on overlap matchesYann Collet2017-06-061-4/+12
|
* cli accept block sizes with KB / MB prefixesYann Collet2017-05-261-2/+10
|
* Merge pull request #360 from Chocobo1/mdYann Collet2017-05-251-2/+2
|\ | | | | [Doc] Fix markdown
| * [Doc] Fix markdownChocobo12017-05-251-2/+2
|/
* Merge pull request #359 from PierreNav/devYann Collet2017-05-231-1/+2
|\ | | | | Add DLL files to the INSTALL target
| * Add DLL files to the INSTALL targetPierreNav2017-05-231-1/+2
|/
* Merge pull request #352 from lz4/resetDCtxYann Collet2017-05-1113-246/+321
|\ | | | | Reset decompression context
| * fix (minor) g++ compatibility for frametestYann Collet2017-05-111-1/+1
| |
| * added test for LZ4F_resetDecompressionContext()Yann Collet2017-05-105-59/+79
| |
| * fixed c_standards testsYann Collet2017-05-102-11/+16
| | | | | | | | and added entry "make list"
| * bumped version number to 1.8.0Yann Collet2017-05-103-6/+6
| | | | | | | | | | due to addition of prototype LZ4F_resetDecompressionContext()
| * updated MakefileYann Collet2017-05-108-103/+140
| | | | | | | | | | to automatically build manual files with make all
| * expose LZ4F_resetDecompressionContext()Yann Collet2017-05-102-65/+80
| |
| * minor readability changesYann Collet2017-05-021-22/+20
|/
* changed macro HEAPMODE into LZ4_HEAPMODEYann Collet2017-05-022-13/+14
| | | | | | | This macro is susceptible to be triggered from user side typically through compiler flag (-DLZ4_HEAPMODE=1). In which case, it makes sense to prefix the macro since we want to reduce potential side-effect on namespace.
* Merge pull request #349 from svpv/masterYann Collet2017-04-303-3/+5
|\ | | | | clamp hc levels > 12 + minor fixes in comments
| * lz4hc.c: clamp compression levels > 12Alexey Tourbin2017-04-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I noticed that, while 'lz4 -12' works fine, 'lz4 -13' does not compress at all. $ cat </etc/passwd |wc -c 2565 $ lz4 -12 </etc/passwd |wc -c 1456 $ lz4 -13 </etc/passwd |wc -c 2584 Perhaps the best way to fix this is to clamp the compression level in the LZ4HC_compress_generic routine.
| * lz4cli.c: fix a comment: LZ4HC_DEFAULT_CLEVEL -> LZ4HC_CLEVEL_MAXAlexey Tourbin2017-04-291-1/+1
| | | | | | | | Actually the program only mentions LZ4HC_CLEVEL_MAX.
| * liz4hc.h: fix a comment: LZ4HC_MAX_CLEVEL -> LZ4HC_CLEVEL_MAXAlexey Tourbin2017-04-291-2/+2
|/
* Merge pull request #348 from terrelln/deprecateYann Collet2017-04-261-5/+9
|\ | | | | [LZ4F] Allow users to disable LZ4F_DEPRECATE
| * [LZ4F] Allow users to disable LZ4F_DEPRECATENick Terrell2017-04-261-5/+9
|/
* Merge pull request #347 from lz4/negativeCLevelsYann Collet2017-04-115-22/+35
|\ | | | | Negative Compression levels
| * lz4frame : Added negative compression levelsYann Collet2017-04-095-15/+26
| |
| * 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
|/
* make __packed memory access default for gccYann Collet2017-03-301-4/+3
| | | | | | | It's always as good or better then memcpy() but depends on gcc-specific extension. solves https://github.com/facebook/zstd/issues/620
* Merge pull request #344 from lz4/LZ4F_getFrameInfoYann Collet2017-03-304-104/+163
|\ | | | | LZ4F_getFrameInfo and LZ4F_resetDecompressionContext
| * fixed minor Visual warningYann Collet2017-03-291-1/+1
| |
| * Improved comments on LZ4F_getFrameInfo()Yann Collet2017-03-293-5/+24
| | | | | | | | and added LZ4F_resetCompressionContext()
| * added LZ4F_resetDecompressionContext()Yann Collet2017-03-291-22/+22
| |
| * Safer LZ4_getFrameInfo()Yann Collet2017-03-294-80/+120
|/ | | | | LZ4_getFrameInfo() is now guaranteed to keep dctx state clean, even in case of failure.
* Merge pull request #342 from iburinoc/isattyYann Collet2017-03-271-1/+10
|\ | | | | Fix IS_CONSOLE returning 1 for NUL on windows
| * Fix inline compile errorsSean Purcell2017-03-271-1/+1
| |
| * Fix IS_CONSOLE returning 1 for NUL on windowsSean Purcell2017-03-271-1/+10
|/
* Merge pull request #341 from iburinoc/exematchYann Collet2017-03-251-6/+15
|\ | | | | Ignore extensions in exe name matching
| * Ignore extensions in exe name matchingSean Purcell2017-03-241-6/+15
| |
* | Merge pull request #340 from lz4/optlz4optYann Collet2017-03-252-83/+86
|\ \ | | | | | | lz4opt
| * | improved level 10 speed for degenerated casesYann Collet2017-03-241-1/+1
| | |
| * | Merge branch 'dev' into optlz4optYann Collet2017-03-245-2/+16
| |\ \
| * \ \ Merge branch 'optlz4opt' of github.com:Cyan4973/lz4 into optlz4optYann Collet2017-03-201-1/+0
| |\ \ \
| | * | | slight btopt speed improvementYann Collet2017-03-181-2/+2
| | | | | | | | | | | | | | | | | | | | removing a useless test
| * | | | minor refactorYann Collet2017-03-202-72/+75
| | | | |