Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | minor Makefile fixes | Yann Collet | 2017-09-07 | 1 | -1/+2 |
| | |||||
* | updated lib/README | Yann Collet | 2017-09-06 | 1 | -28/+28 |
| | | | | clarifications, improved wording | ||||
* | complementary information for #394 | Yann Collet | 2017-08-30 | 1 | -8/+14 |
| | |||||
* | clarified documentation of streaming decompression functions | Yann Collet | 2017-08-30 | 1 | -9/+13 |
| | | | | | (synchronous bufferless mode) answering questions by @jtbandes (#394) | ||||
* | fixed FS-independent file order in /lib | Yann Collet | 2017-08-29 | 1 | -2/+2 |
| | | | | identified by @bmwiedemann | ||||
* | build: source files sorted in a FS independent manner | Yann Collet | 2017-08-26 | 1 | -2/+3 |
| | | | | | to be more compatible with reproducible builds. patch inspired by @bmwiedemann | ||||
* | Don't use C++11 deprecation attribute with clang | Nick Terrell | 2017-08-24 | 1 | -2/+4 |
| | | | | | Clang doesn't accept a C++11 attribute following `LZ4LIB_API`. Use the GNU attribute instead. | ||||
* | FIX: added prefix to FORCE_INLINE to prevent redefinition error during ↵ | tcpan | 2017-08-24 | 4 | -37/+37 |
| | | | | compilation when used with other libraries that define FORCE_INLINE | ||||
* | fix : asan error in dctx, due to increased maximum frame header size, ↵v1.8.0 | Yann Collet | 2017-08-17 | 1 | -3/+3 |
| | | | | reported by Craig Young | ||||
* | Merge branch 'dev' into installVars and fixed conflicts | Yann Collet | 2017-08-15 | 7 | -526/+817 |
|\ | |||||
| * | Merge pull request #383 from lz4/blockChecksum | Yann Collet | 2017-08-15 | 3 | -326/+400 |
| |\ | | | | | | | Block checksum | ||||
| | * | restored block checksum capability at lz4frame API level | Yann Collet | 2017-08-12 | 3 | -326/+400 |
| | | | |||||
| * | | Merge pull request #380 from lz4/dictID | Yann Collet | 2017-08-15 | 7 | -239/+456 |
| |\ \ | | |/ | | | | Frame Dictionary API | ||||
| | * | implemented lz4frame decompression API | Yann Collet | 2017-08-10 | 3 | -64/+72 |
| | | | |||||
| | * | support dictionary compression with independent blocks | Yann Collet | 2017-08-10 | 2 | -62/+83 |
| | | | |||||
| | * | fixed gcc prototype warning | Yann Collet | 2017-08-10 | 1 | -1/+1 |
| | | | |||||
| | * | dictionary compression correctly uses compression level | Yann Collet | 2017-08-10 | 5 | -36/+62 |
| | | | | | | | | | | | | Not obvious : copying the state was copying cdict's compression level | ||||
| | * | fixed C++ conversion warnings | Yann Collet | 2017-08-10 | 1 | -2/+2 |
| | | | |||||
| | * | fixed uninitialization error in lz4frame | Yann Collet | 2017-08-10 | 1 | -4/+5 |
| | | | |||||
| | * | implemented dictionary compression in lz4frame | Yann Collet | 2017-08-09 | 6 | -93/+238 |
| | | | | | | | | | | | | | | | note : only compression API is implemented and tested still to do : decompression API | ||||
| | * | added dictID inside LZ4F_frameInfo_t | Yann Collet | 2017-08-09 | 2 | -15/+31 |
| | | | | | | | | | | | | | | | Compressor can set dictID on LZ4F_compressBegin() Decompressor can retrieve it using LZ4F_getFrameInfo() | ||||
* | | | better respect GNU standard Makefile conventions | Yann Collet | 2017-08-14 | 1 | -17/+23 |
|/ / | | | | | | | | | | | supports lowercase directory variables add an "Installation" section in README.md added an INSTALL file | ||||
* | | Allow to predefine FORCE_INLINE macro. | Alex Deymo | 2017-08-07 | 2 | -20/+32 |
|/ | | | | | | | | | | | FORCE_INLINE macro is defined based on the compiler used. When using gcc, it will include "__attribute__((always_inline))" forcing gcc to always inline all the functions marked as FORCE_INLINE. However, this can cause a performance degradation of about 15%. This patch allows to set the FORCE_INLINE macro from the compiler command line to either "static" or "static inline" giving allowing it to inline functions as needed when performing optimizations. | ||||
* | Fix typos preventing installation of static lib. | Ido Rosen | 2017-08-01 | 1 | -1/+2 |
| | |||||
* | fix #369 | Yann Collet | 2017-06-26 | 2 | -1/+18 |
| | | | | | | | | | | | | | | The bug would make the bt search read one byte in an invalid memory region, and make a branch decision based on its value. Impact was small (missed compression opportunity). It only happens in -BD mode, with extDict-prefix overlapping matches. The bt match search is supposed to work also in extDict mode. In which case, the match ptr can point into Dict. When the match was overlapping Dict<->Prefix, match[matchLength] would end up outside of Dict, in an invalid memory area. The correction ensures that in such a case, match[matchLength] ends up at intended location, inside prefix. | ||||
* | Fix gcc7 Wimplicit-fallthrough warnings | Chocobo1 | 2017-06-19 | 2 | -4/+4 |
| | | | | | For the default Wimplicit-fallthrough=3 level, the comment should start with "fall*" | ||||
* | made level 10 a bit faster | Yann Collet | 2017-06-14 | 1 | -6/+7 |
| | | | | | | | at the expense of a little bit of compression ratio. Now speed is intermediate on calgary corpus : 25 - 12 - 8 - 3 | ||||
* | clarified lz4frame api comment (#350) | Yann Collet | 2017-06-13 | 1 | -15/+17 |
| | |||||
* | updated NEWS | Yann Collet | 2017-06-12 | 1 | -2/+2 |
| | |||||
* | added test for LZ4F_resetDecompressionContext() | Yann Collet | 2017-05-10 | 3 | -37/+47 |
| | |||||
* | bumped version number to 1.8.0 | Yann Collet | 2017-05-10 | 1 | -2/+2 |
| | | | | | due to addition of prototype LZ4F_resetDecompressionContext() | ||||
* | updated Makefile | Yann Collet | 2017-05-10 | 2 | -7/+8 |
| | | | | | to automatically build manual files with make all | ||||
* | expose LZ4F_resetDecompressionContext() | Yann Collet | 2017-05-10 | 2 | -65/+80 |
| | |||||
* | minor readability changes | Yann Collet | 2017-05-02 | 1 | -22/+20 |
| | |||||
* | changed macro HEAPMODE into LZ4_HEAPMODE | Yann Collet | 2017-05-02 | 2 | -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. | ||||
* | 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. | ||||
* | liz4hc.h: fix a comment: LZ4HC_MAX_CLEVEL -> LZ4HC_CLEVEL_MAX | Alexey Tourbin | 2017-04-29 | 1 | -2/+2 |
| | |||||
* | [LZ4F] Allow users to disable LZ4F_DEPRECATE | Nick Terrell | 2017-04-26 | 1 | -5/+9 |
| | |||||
* | lz4frame : Added negative compression levels | Yann Collet | 2017-04-09 | 3 | -14/+14 |
| | |||||
* | ensure lz4f_cctx internal buffer size remain valid in case of malloc error | Yann Collet | 2017-04-09 | 1 | -1/+2 |
| | |||||
* | lz4frame : control lz4 context creation success | Yann Collet | 2017-04-09 | 1 | -6/+7 |
| | |||||
* | make __packed memory access default for gcc | Yann Collet | 2017-03-30 | 1 | -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 | ||||
* | fixed minor Visual warning | Yann Collet | 2017-03-29 | 1 | -1/+1 |
| | |||||
* | Improved comments on LZ4F_getFrameInfo() | Yann Collet | 2017-03-29 | 3 | -5/+24 |
| | | | | and added LZ4F_resetCompressionContext() | ||||
* | Safer LZ4_getFrameInfo() | Yann Collet | 2017-03-29 | 3 | -71/+103 |
| | | | | | LZ4_getFrameInfo() is now guaranteed to keep dctx state clean, even in case of failure. | ||||
* | Merge pull request #340 from lz4/optlz4opt | Yann Collet | 2017-03-25 | 2 | -83/+86 |
|\ | | | | | lz4opt | ||||
| * | improved level 10 speed for degenerated cases | Yann Collet | 2017-03-24 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'dev' into optlz4opt | Yann Collet | 2017-03-24 | 1 | -1/+1 |
| |\ | |||||
| * \ | Merge branch 'optlz4opt' of github.com:Cyan4973/lz4 into optlz4opt | Yann Collet | 2017-03-20 | 1 | -1/+0 |
| |\ \ | |||||
| | * | | slight btopt speed improvement | Yann Collet | 2017-03-18 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | removing a useless test |