Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Finished the two example files. Decided to avoid adding anything to lz4.c/h ↵ | KyleJHarper | 2015-10-29 | 2 | -12/+0 |
| | | | | to expose LZ4_compress_generic(). | ||||
* | Took out the basics and placed them into basics.c. Added decompression and ↵ | KyleJHarper | 2015-10-26 | 2 | -11/+12 |
| | | | | a wrapper for the generic call. I will likely break this file up into 2 examples before submission. | ||||
* | Final tests and reporting are done. As expected there isn't much to be ↵ | KyleJHarper | 2015-10-23 | 2 | -0/+11 |
| | | | | gained by jumping the chain. In most of my tests I did see a moderate performance gain when invoking LZ4_compress_generic() directly with normal text. This could very easily be an edge case. Either way it's interesting and worth sharing. | ||||
* | Fixed a few minor visual analyzer warnings | Yann Collet | 2015-06-29 | 1 | -2/+2 |
| | |||||
* | lz4hc : added one malloc test | Yann Collet | 2015-06-29 | 1 | -0/+1 |
| | |||||
* | Updated lib readme | Yann Collet | 2015-06-27 | 1 | -4/+5 |
| | |||||
* | Added namespace ability to xxhash | Yann Collet | 2015-06-27 | 3 | -2/+35 |
| | |||||
* | Changed : static library is no longer compiled with -fPIC by default (this ↵ | Yann Collet | 2015-06-27 | 1 | -1/+1 |
| | | | | option can still be added on the command line) See #53 | ||||
* | Minor lib readme update | Yann Collet | 2015-06-18 | 1 | -4/+5 |
| | |||||
* | Performance fix : big compression speed boost for clang (+30%) | Yann Collet | 2015-05-21 | 1 | -1/+1 |
| | |||||
* | Updated a few comments | Yann Collet | 2015-05-12 | 2 | -3/+2 |
| | |||||
* | Updated comments | Yann Collet | 2015-05-06 | 1 | -4/+4 |
| | |||||
* | Fixed typo | Yann Collet | 2015-05-06 | 1 | -1/+1 |
| | |||||
* | Added : LZ4_compress_destSize() | Yann Collet | 2015-05-06 | 3 | -6/+234 |
| | |||||
* | Added compilation flag -Wcast-qual | Yann Collet | 2015-05-06 | 7 | -87/+84 |
| | |||||
* | Updated lz4hc API | Yann Collet | 2015-05-03 | 3 | -72/+76 |
| | |||||
* | Fixed minor Visual warning | Yann Collet | 2015-05-03 | 1 | -1/+1 |
| | |||||
* | New lz4 API, using LZ4_compress_fast() | Yann Collet | 2015-05-03 | 3 | -101/+81 |
| | |||||
* | Fixed bug 9318 | Yann Collet | 2015-05-02 | 1 | -4/+6 |
| | |||||
* | refactored lz4hc | Yann Collet | 2015-05-02 | 1 | -51/+51 |
| | |||||
* | moved lz4frame context types to incomplete typedef | Yann Collet | 2015-04-27 | 2 | -37/+36 |
| | |||||
* | Increased aligment requirement for lz4frame context pointer | Yann Collet | 2015-04-24 | 1 | -3/+3 |
| | |||||
* | Modified lz4frame context typedef, to enforce stricter alignment condition | Yann Collet | 2015-04-24 | 2 | -5/+6 |
| | |||||
* | streaming API : Improved ring buffer management | Yann Collet | 2015-04-24 | 3 | -18/+27 |
| | |||||
* | Added LZ4_compress_fast_extState() | Yann Collet | 2015-04-23 | 2 | -26/+30 |
| | |||||
* | Frame content size disabled by default when using LZ4F_compressFrame(), to ↵ | Yann Collet | 2015-04-21 | 1 | -1/+0 |
| | | | | be in better coherence with the advanced API LZ4F_compress_update() | ||||
* | Removed obsolete functions from lz4 cli | Yann Collet | 2015-04-21 | 2 | -5/+6 |
| | |||||
* | Removed LZ4_compress() (obsolete) from lz4 | Yann Collet | 2015-04-21 | 2 | -2/+2 |
| | |||||
* | Updated LZ4F_freeDecompressionContext(), to provide stage hint as result | Yann Collet | 2015-04-20 | 2 | -1/+5 |
| | |||||
* | Changed LZ4F compressionLevel from unsigned to signed, in anticipation for ↵ | Yann Collet | 2015-04-20 | 2 | -9/+9 |
| | | | | LZ4_compress_fast() integration. | ||||
* | Updated LZ4F_getFrameInfo() behavior, related to uncomplete frame header ↵ | Yann Collet | 2015-04-19 | 3 | -55/+63 |
| | | | | decoding attempts | ||||
* | minor header refactoring | Yann Collet | 2015-04-16 | 1 | -16/+15 |
| | |||||
* | Add LZ4F_OBSOLETE_ENUM() to describe obsolete enums | Takayuki MATSUOKA | 2015-04-16 | 1 | -19/+45 |
| | | | | | | - Add LZ4F_OBSOLETE_ENUM() to describe obsolete enums - Add compatible typedefs for obsolete enum types - Remove constant macros | ||||
* | Updated lz4frame error names | Yann Collet | 2015-04-15 | 2 | -19/+15 |
| | |||||
* | Merge pull request #95 from t-mat/issue/90 | Yann Collet | 2015-04-15 | 3 | -67/+87 |
|\ | | | | | Modified lz4frame enum, by @t-mat | ||||
| * | Issue#90 : Change old enum to macro to maximize compatibility | Takayuki MATSUOKA | 2015-04-14 | 1 | -4/+13 |
| | | |||||
| * | Issue#90 : Add LZ4F_ prefix | Takayuki MATSUOKA | 2015-04-14 | 3 | -65/+76 |
| | | | | | | | | | | - Add LZ4F_ prefix to LZ4 frame related enums. - Also add conditional macro LZ4F_DISABLE_OLD_ENUMS for testing and users who prefer strict prefixes. | ||||
* | | Fix LZ4_DEPRECATED() in lz4hc.h | Takayuki MATSUOKA | 2015-04-15 | 1 | -1/+1 |
| | | |||||
* | | Fix LZ4_DEPRECATED() for older/non-gcc/clang/MSVC compilers | Takayuki MATSUOKA | 2015-04-14 | 1 | -1/+1 |
| | | |||||
* | | Replace GCC_VERSION with LZ4_GCC_VERSION | Takayuki MATSUOKA | 2015-04-14 | 3 | -12/+12 |
|/ | |||||
* | Revert "Revert "Add more descriptive frame errors"" | Charles Allen | 2015-04-14 | 2 | -7/+12 |
| | | | | This reverts commit 5a6652708439800e30d21e0cd24ed15cfb745a8b. | ||||
* | Changes LZ4F_compressBound() definition using NULL prefsPtr to cover worst ↵ | Yann Collet | 2015-04-14 | 2 | -4/+5 |
| | | | | case instead of default. | ||||
* | Fixed issue #84 | Yann Collet | 2015-04-12 | 2 | -9/+10 |
| | |||||
* | fixed minor g++ warning | Yann Collet | 2015-04-12 | 1 | -1/+1 |
| | |||||
* | Merge pull request #82 from t-mat/add-lz4-prefix | Yann Collet | 2015-04-12 | 2 | -31/+31 |
|\ | | | | | Add LZ4 prefix to deprecation macros | ||||
| * | Add LZ4 prefix to deprecation macros | Takayuki MATSUOKA | 2015-04-12 | 2 | -31/+31 |
| | | | | | | | | | | | | | | Replace the following macros: - "_DEPRECATE_WARNING_DEFBLOCK" to "LZ4_DEPRECATE_WARNING_DEFBLOCK" - "DEPRECATED" to "LZ4_DEPRECATED" | ||||
* | | Fixed a few Valgrind warnings | Yann Collet | 2015-04-12 | 2 | -3/+4 |
|/ | |||||
* | Fixed : a few minor coverity warnings | Yann Collet | 2015-04-12 | 1 | -6/+12 |
| | |||||
* | Extended obsolete warning messages to lz4hc | Yann Collet | 2015-04-11 | 2 | -11/+37 |
| | |||||
* | Implemented obsolete warning message | Yann Collet | 2015-04-11 | 2 | -32/+45 |
| |