Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new level 10 | Yann Collet | 2017-12-20 | 1 | -1/+1 |
| | | | | | | | | | | | | lz4opt is only competitive vs lz4hc level 10. Below that level, it doesn't match the speed / compression effectiveness of regular hc parser. This patch propose to extend lz4opt to levels 10-12. The new level 10 tend to compress a bit better and a bit faster than previous one (mileage vary depending on file) The only downside is that `limitedDestSize` mode is now limited to max level 9 (vs 10), since it's only compatible with regular HC parser. (Note : I suspect it's possible to convert lz4opt to support it too, but haven't spent time into it). | ||||
* | minor comment edit | Yann Collet | 2017-11-03 | 1 | -22/+19 |
| | |||||
* | unified HC levels | Yann Collet | 2017-11-03 | 1 | -2/+1 |
| | | | | | LZ4_setCompressionLevel() can be users accross the whole range of HC levels No more transition issue between Optimal and HC modes | ||||
* | removed ctx->searchNum | Yann Collet | 2017-11-03 | 1 | -3/+1 |
| | | | | | nbSearches now transmitted directly as function parameter easier to track and debug | ||||
* | LZ4_compress_HC_continue_destSize() now compatible with optimal parser | Yann Collet | 2017-11-03 | 1 | -2/+2 |
| | | | | levels 11+ | ||||
* | removed code and reference to binary tree match finder | Yann Collet | 2017-11-03 | 1 | -2/+2 |
| | | | | reduced size of LZ4HC state | ||||
* | lz4opt: added hash chain search | Yann Collet | 2017-10-21 | 1 | -1/+1 |
| | |||||
* | dictionary compression correctly uses compression level | Yann Collet | 2017-08-10 | 1 | -7/+16 |
| | | | | Not obvious : copying the state was copying cdict's compression level | ||||
* | updated NEWS | Yann Collet | 2017-06-12 | 1 | -2/+2 |
| | |||||
* | liz4hc.h: fix a comment: LZ4HC_MAX_CLEVEL -> LZ4HC_CLEVEL_MAX | Alexey Tourbin | 2017-04-29 | 1 | -2/+2 |
| | |||||
* | Export deprecated symbols declared in lz4hc.h | Dmitry V. Levin | 2017-03-24 | 1 | -17/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 25b243588585b06a2d947372284cbfe00da930e9 exported deprecated symbols declared in lz4.h by marking all LZ4_DEPRECATED functions with LZ4LIB_API attribute. This change does the same with functions declared in lz4hc.h file, thus extending the export to lz4hc.h. As result, the following 17 deprecated functions are exported again: LZ4_compressHC LZ4_compressHC2 LZ4_compressHC2_continue LZ4_compressHC2_limitedOutput LZ4_compressHC2_limitedOutput_continue LZ4_compressHC2_limitedOutput_withStateHC LZ4_compressHC2_withStateHC LZ4_compressHC_continue LZ4_compressHC_limitedOutput LZ4_compressHC_limitedOutput_continue LZ4_compressHC_limitedOutput_withStateHC LZ4_compressHC_withStateHC LZ4_createHC LZ4_freeHC LZ4_resetStreamStateHC LZ4_sizeofStreamStateHC LZ4_slideInputBufferHC | ||||
* | added `extern C` for lz4.h static section | Yann Collet | 2017-03-17 | 1 | -1/+1 |
| | | | | should make the file more compatible with C++ compiler, such as Visual or g++ | ||||
* | LZ4_compress_HC_continue_destSize() works as intended up to level 10 | Yann Collet | 2017-03-16 | 1 | -0/+2 |
| | | | | | 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 | -10/+10 |
| | | | | | Limits compression level to 10, to remain compatible with Hash Chain. | ||||
* | created LZ4_HC_STATIC_LINKING_ONLY section | Yann Collet | 2017-03-16 | 1 | -10/+47 |
| | | | | where are exposed new prototypes *_destSize() | ||||
* | lz4hc: Add LZ4_compressHC_destSize and LZ4_compress_HC_continue_destSize | remittor | 2017-03-08 | 1 | -0/+2 |
| | |||||
* | removed nextToUpdateBT | Przemyslaw Skibinski | 2016-12-28 | 1 | -2/+0 |
| | |||||
* | updated a few macros names | Yann Collet | 2016-12-22 | 1 | -4/+4 |
| | |||||
* | tree update dependent from compression level | Przemyslaw Skibinski | 2016-12-09 | 1 | -0/+1 |
| | |||||
* | fullUpdate as a parameter | Przemyslaw Skibinski | 2016-12-09 | 1 | -0/+2 |
| | |||||
* | slightly improved lz4opt.h | Przemyslaw Skibinski | 2016-12-08 | 1 | -1/+1 |
| | |||||
* | fixed LZ4_STREAMHCSIZE | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+1 |
| | |||||
* | LZ4HC_DICTIONARY_LOGSIZE 17 | Przemyslaw Skibinski | 2016-12-07 | 1 | -4/+4 |
| | |||||
* | improved ratio | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+1 |
| | |||||
* | 15-bit LZ4HC_HASH_LOG | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+1 |
| | |||||
* | LZ4HC_MAX_CLEVEL = 12 | Przemyslaw Skibinski | 2016-12-07 | 1 | -2/+2 |
| | |||||
* | 17-bit LZ4HC_MAXD | Przemyslaw Skibinski | 2016-12-06 | 1 | -2/+2 |
| | |||||
* | introduced LZ4HC_compress_hashChain | Przemyslaw Skibinski | 2016-12-06 | 1 | -3/+5 |
| | |||||
* | fixed nameless union warnings | Yann Collet | 2016-11-14 | 1 | -4/+2 |
| | |||||
* | made lz4hc explicitly dependent on lz4 | Yann Collet | 2016-11-12 | 1 | -49/+17 |
| | |||||
* | fixed __GNUC__ macro | Yann Collet | 2016-11-12 | 1 | -2/+2 |
| | |||||
* | enabled deprecation warnings on remaining obsolete functions | Yann Collet | 2016-11-12 | 1 | -14/+14 |
| | |||||
* | update code comments | Yann Collet | 2016-11-12 | 1 | -110/+100 |
| | |||||
* | Expose internal types to remove strict aliasing | Nick Terrell | 2016-11-11 | 1 | -1/+59 |
| | |||||
* | removed LZ4_DLL_EXPORT=1 (2) | Przemyslaw Skibinski | 2016-11-09 | 1 | -6/+4 |
| | |||||
* | updated links to LZ4 repository | Przemyslaw Skibinski | 2016-11-03 | 1 | -1/+1 |
| | |||||
* | Use different prefix for each file to avoid conflict | Kouhei Sutou | 2016-09-23 | 1 | -18/+18 |
| | |||||
* | Add LZ4LIB_API | Kouhei Sutou | 2016-09-22 | 1 | -15/+32 |
| | | | | | | | | | | | | It's based on Zstandard's ZSTDLIB_API. See also: https://github.com/Cyan4973/lz4/issues/216#issuecomment-226245432 Deprecated functions aren't LZ4LIB_API targets. Because we don't need to export deprecated functions from now. There are same LZ4LIB_API definitions in each header files instead of including a common header file because LZ4_DEPRECATED is defined so. | ||||
* | -b# and -e# options from zstd | inikep | 2016-09-02 | 1 | -2/+6 |
| | |||||
* | stronger compilation flags | Yann Collet | 2016-06-29 | 1 | -4/+4 |
| | |||||
* | modified : some more deprecated functions from lz4hc.h generate warnings | Yann Collet | 2016-06-29 | 1 | -28/+31 |
| | |||||
* | Added compilation flag -Wcast-qual | Yann Collet | 2015-05-06 | 1 | -2/+2 |
| | |||||
* | Updated lz4hc API | Yann Collet | 2015-05-03 | 1 | -52/+55 |
| | |||||
* | Fix LZ4_DEPRECATED() in lz4hc.h | Takayuki MATSUOKA | 2015-04-15 | 1 | -1/+1 |
| | |||||
* | Replace GCC_VERSION with LZ4_GCC_VERSION | Takayuki MATSUOKA | 2015-04-14 | 1 | -3/+3 |
| | |||||
* | Add LZ4 prefix to deprecation macros | Takayuki MATSUOKA | 2015-04-12 | 1 | -16/+16 |
| | | | | | | | Replace the following macros: - "_DEPRECATE_WARNING_DEFBLOCK" to "LZ4_DEPRECATE_WARNING_DEFBLOCK" - "DEPRECATED" to "LZ4_DEPRECATED" | ||||
* | Extended obsolete warning messages to lz4hc | Yann Collet | 2015-04-11 | 1 | -7/+28 |
| | |||||
* | Update lz4hc API : LZ4_compressHC_safe() | Yann Collet | 2015-04-11 | 1 | -53/+38 |
| | |||||
* | Fixed cast-align warnings on 32-bits | Yann Collet | 2015-03-25 | 1 | -5/+11 |
| | |||||
* | Improved sparse file support | Yann Collet | 2015-03-13 | 1 | -3/+3 |
| |