Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lz4hc.c: clamp compression levels > 12 | Alexey Tourbin | 2017-04-29 | 1 | -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. | ||||
* | improved level 10 speed for degenerated cases | Yann Collet | 2017-03-24 | 1 | -1/+1 |
| | |||||
* | minor refactor | Yann Collet | 2017-03-20 | 1 | -0/+4 |
| | |||||
* | LZ4_compress_HC_continue_destSize() works as intended up to level 10 | Yann Collet | 2017-03-16 | 1 | -16/+15 |
| | | | | | It's incompatible with btopt though, so cLevel >= 11 feature much reduced performance (degraded mode) | ||||
* | LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code path | Yann Collet | 2017-03-16 | 1 | -45/+47 |
| | | | | | Limits compression level to 10, to remain compatible with Hash Chain. | ||||
* | created LZ4_HC_STATIC_LINKING_ONLY section | Yann Collet | 2017-03-16 | 1 | -56/+43 |
| | | | | where are exposed new prototypes *_destSize() | ||||
* | lz4hc: Fix LZ4HC_compress_hashChain for backward compatibility | remittor | 2017-03-09 | 1 | -2/+2 |
| | |||||
* | lz4hc: Fix LZ4HC_compress_hashChain for full support destSize variant | remittor | 2017-03-08 | 1 | -2/+5 |
| | |||||
* | lz4hc: Add LZ4_compressHC_destSize and LZ4_compress_HC_continue_destSize | remittor | 2017-03-08 | 1 | -10/+64 |
| | |||||
* | lz4hc: Cleanup function LZ4HC_encodeSequence | remittor | 2017-03-07 | 1 | -11/+18 |
| | |||||
* | lz4hc: Cleanup function LZ4HC_compress_hashChain | remittor | 2017-03-07 | 1 | -7/+17 |
| | |||||
* | removed nextToUpdateBT | Przemyslaw Skibinski | 2016-12-28 | 1 | -3/+2 |
| | |||||
* | clean logging | Przemyslaw Skibinski | 2016-12-28 | 1 | -3/+0 |
| | |||||
* | LZ4HC_getSearchNum | Przemyslaw Skibinski | 2016-12-28 | 1 | -2/+14 |
| | |||||
* | fixed table update in LZ4_loadDictHC | Przemyslaw Skibinski | 2016-12-28 | 1 | -1/+4 |
| | |||||
* | added FUZ_CLEVEL_DEFAULT | Przemyslaw Skibinski | 2016-12-28 | 1 | -1/+1 |
| | |||||
* | updated a few macros names | Yann Collet | 2016-12-22 | 1 | -2/+2 |
| | |||||
* | tree update dependent from compression level | Przemyslaw Skibinski | 2016-12-09 | 1 | -2/+4 |
| | |||||
* | fullUpdate as a parameter | Przemyslaw Skibinski | 2016-12-09 | 1 | -4/+7 |
| | |||||
* | full binary tree update | Przemyslaw Skibinski | 2016-12-09 | 1 | -6/+0 |
| | |||||
* | fixed gcc warnings | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+1 |
| | |||||
* | improve code formatting | Przemyslaw Skibinski | 2016-12-07 | 1 | -2/+4 |
| | |||||
* | LZ4HC_MAX_CLEVEL = 12 | Przemyslaw Skibinski | 2016-12-07 | 1 | -10/+6 |
| | |||||
* | removed LZ4HC_GetAllMatches | Przemyslaw Skibinski | 2016-12-07 | 1 | -4/+4 |
| | |||||
* | 17-bit LZ4HC_MAXD | Przemyslaw Skibinski | 2016-12-06 | 1 | -6/+10 |
| | |||||
* | introduced LZ4HC_compress_hashChain | Przemyslaw Skibinski | 2016-12-06 | 1 | -3/+27 |
| | |||||
* | added a few dates | Yann Collet | 2016-11-21 | 1 | -1/+1 |
| | |||||
* | fuzzer code refactoring | Yann Collet | 2016-11-13 | 1 | -1/+1 |
| | | | | fix g++ conversion warning | ||||
* | made lz4hc explicitly dependent on lz4 | Yann Collet | 2016-11-12 | 1 | -20/+16 |
| | |||||
* | update code comments | Yann Collet | 2016-11-12 | 1 | -14/+14 |
| | |||||
* | Expose internal types to remove strict aliasing | Nick Terrell | 2016-11-11 | 1 | -53/+29 |
| | |||||
* | slightly improved HC compression ratio | Yann Collet | 2016-11-08 | 1 | -6/+6 |
| | |||||
* | updated comments | Yann Collet | 2016-11-04 | 1 | -2/+2 |
| | |||||
* | updated links to LZ4 repository | Przemyslaw Skibinski | 2016-11-03 | 1 | -1/+1 |
| | |||||
* | lz4cli version number from lz4.h | Yann Collet | 2016-09-03 | 1 | -2/+9 |
| | |||||
* | coding style change | Yann Collet | 2016-09-03 | 1 | -95/+55 |
| | |||||
* | -b# and -e# options from zstd | inikep | 2016-09-02 | 1 | -5/+2 |
| | |||||
* | heapmode macro option for lz4hc | Yann Collet | 2015-10-21 | 1 | -11/+28 |
| | |||||
* | lz4hc : added one malloc test | Yann Collet | 2015-06-29 | 1 | -0/+1 |
| | |||||
* | Added compilation flag -Wcast-qual | Yann Collet | 2015-05-06 | 1 | -5/+6 |
| | |||||
* | Updated lz4hc API | Yann Collet | 2015-05-03 | 1 | -18/+19 |
| | |||||
* | refactored lz4hc | Yann Collet | 2015-05-02 | 1 | -51/+51 |
| | |||||
* | streaming API : Improved ring buffer management | Yann Collet | 2015-04-24 | 1 | -1/+2 |
| | |||||
* | Removed obsolete functions from lz4 cli | Yann Collet | 2015-04-21 | 1 | -1/+2 |
| | |||||
* | Fixed a few Valgrind warnings | Yann Collet | 2015-04-12 | 1 | -1/+1 |
| | |||||
* | Update lz4hc API : LZ4_compressHC_safe() | Yann Collet | 2015-04-11 | 1 | -58/+28 |
| | |||||
* | restored lz4hc compression ratio | Yann Collet | 2015-03-30 | 1 | -20/+24 |
| | |||||
* | Fixed cast-align warnings on 32-bits | Yann Collet | 2015-03-25 | 1 | -1/+1 |
| | |||||
* | Improved sparse file support | Yann Collet | 2015-03-13 | 1 | -3/+4 |
| | |||||
* | Added : -pedantic compilation option | Yann Collet | 2014-12-17 | 1 | -1/+1 |
| |