Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Clarified a few comments | Yann Collet | 2014-12-03 | 1 | -60/+11 |
| | |||||
* | New directory structure : library source files into /lib directory | Yann Collet | 2014-11-30 | 1 | -0/+223 |