summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* New unalign access methodYann Collet2015-08-191-12/+41
|
* updated xxhashYann Collet2015-08-191-14/+39
|
* Slightly improved compression speed on ARMv6Yann Collet2015-08-161-11/+11
|
* Improved performance on ARMv6Yann Collet2015-08-162-16/+36
|
* Updated xxhash to r41Yann Collet2015-08-151-19/+41
|
* Makefile : generates *.o for faster processingYann Collet2015-08-152-12/+10
|
* minor simplification lz4_readarch()Yann Collet2015-08-061-12/+4
|
* minor refactorYann Collet2015-07-162-17/+16
|
* Slightly improved decompression speedYann Collet2015-07-161-5/+6
| | | Slightly decreased decompression stack usage in 64-bits mode
* sligthly improved decompression speedYann Collet2015-07-161-12/+12
|
* liblz4 : Moved XXH_NAMESPACE to CPPFLAGSYann Collet2015-07-021-4/+7
|
* Fixed a few minor visual analyzer warningsYann Collet2015-06-291-2/+2
|
* lz4hc : added one malloc testYann Collet2015-06-291-0/+1
|
* Updated lib readmeYann Collet2015-06-271-4/+5
|
* Added namespace ability to xxhashYann Collet2015-06-273-2/+35
|
* Changed : static library is no longer compiled with -fPIC by default (this ↵Yann Collet2015-06-271-1/+1
| | | | option can still be added on the command line) See #53
* Minor lib readme updateYann Collet2015-06-181-4/+5
|
* Performance fix : big compression speed boost for clang (+30%)Yann Collet2015-05-211-1/+1
|
* Updated a few commentsYann Collet2015-05-122-3/+2
|
* Updated commentsYann Collet2015-05-061-4/+4
|
* Fixed typoYann Collet2015-05-061-1/+1
|
* Added : LZ4_compress_destSize()Yann Collet2015-05-063-6/+234
|
* Added compilation flag -Wcast-qualYann Collet2015-05-067-87/+84
|
* Updated lz4hc APIYann Collet2015-05-033-72/+76
|
* Fixed minor Visual warningYann Collet2015-05-031-1/+1
|
* New lz4 API, using LZ4_compress_fast()Yann Collet2015-05-033-101/+81
|
* Fixed bug 9318Yann Collet2015-05-021-4/+6
|
* refactored lz4hcYann Collet2015-05-021-51/+51
|
* moved lz4frame context types to incomplete typedefYann Collet2015-04-272-37/+36
|
* Increased aligment requirement for lz4frame context pointerYann Collet2015-04-241-3/+3
|
* Modified lz4frame context typedef, to enforce stricter alignment conditionYann Collet2015-04-242-5/+6
|
* streaming API : Improved ring buffer managementYann Collet2015-04-243-18/+27
|
* Added LZ4_compress_fast_extState()Yann Collet2015-04-232-26/+30
|
* Frame content size disabled by default when using LZ4F_compressFrame(), to ↵Yann Collet2015-04-211-1/+0
| | | | be in better coherence with the advanced API LZ4F_compress_update()
* Removed obsolete functions from lz4 cliYann Collet2015-04-212-5/+6
|
* Removed LZ4_compress() (obsolete) from lz4Yann Collet2015-04-212-2/+2
|
* Updated LZ4F_freeDecompressionContext(), to provide stage hint as resultYann Collet2015-04-202-1/+5
|
* Changed LZ4F compressionLevel from unsigned to signed, in anticipation for ↵Yann Collet2015-04-202-9/+9
| | | | LZ4_compress_fast() integration.
* Updated LZ4F_getFrameInfo() behavior, related to uncomplete frame header ↵Yann Collet2015-04-193-55/+63
| | | | decoding attempts
* minor header refactoringYann Collet2015-04-161-16/+15
|
* Add LZ4F_OBSOLETE_ENUM() to describe obsolete enumsTakayuki MATSUOKA2015-04-161-19/+45
| | | | | | - Add LZ4F_OBSOLETE_ENUM() to describe obsolete enums - Add compatible typedefs for obsolete enum types - Remove constant macros
* Updated lz4frame error namesYann Collet2015-04-152-19/+15
|
* Merge pull request #95 from t-mat/issue/90Yann Collet2015-04-153-67/+87
|\ | | | | Modified lz4frame enum, by @t-mat
| * Issue#90 : Change old enum to macro to maximize compatibilityTakayuki MATSUOKA2015-04-141-4/+13
| |
| * Issue#90 : Add LZ4F_ prefixTakayuki MATSUOKA2015-04-143-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.hTakayuki MATSUOKA2015-04-151-1/+1
| |
* | Fix LZ4_DEPRECATED() for older/non-gcc/clang/MSVC compilersTakayuki MATSUOKA2015-04-141-1/+1
| |
* | Replace GCC_VERSION with LZ4_GCC_VERSIONTakayuki MATSUOKA2015-04-143-12/+12
|/
* Revert "Revert "Add more descriptive frame errors""Charles Allen2015-04-142-7/+12
| | | | This reverts commit 5a6652708439800e30d21e0cd24ed15cfb745a8b.
* Changes LZ4F_compressBound() definition using NULL prefsPtr to cover worst ↵Yann Collet2015-04-142-4/+5
| | | | case instead of default.