summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed LZ4_compress() (obsolete) from lz4Yann Collet2015-04-214-13/+13
|
* 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.
* Fixed frame concatenationYann Collet2015-04-201-3/+5
|
* Fixed frametestYann Collet2015-04-201-4/+5
|
* Restored make-lz4Yann Collet2015-04-201-7/+1
|
* Fixed unfinished frame (issue #75)Yann Collet2015-04-204-11/+40
|
* Updated LZ4F_getFrameInfo() behavior, related to uncomplete frame header ↵Yann Collet2015-04-194-55/+94
| | | | decoding attempts
* added --no-sparse testYann Collet2015-04-181-8/+11
|
* Sparse file support is now enabled by defaultYann Collet2015-04-173-3/+3
|
* test error message in multiple files modeYann Collet2015-04-161-0/+1
|
* Reclassified some notification messages as errorsYann Collet2015-04-161-2/+2
|
* stronger arm testsYann Collet2015-04-162-4/+4
|
* fix minor "divide by zero" riskYann Collet2015-04-161-1/+2
|
* fixed minor leakYann Collet2015-04-161-0/+1
|
* Static analyzer generates error codes on bug suspicionYann Collet2015-04-161-2/+2
|
* minor header refactoringYann Collet2015-04-161-16/+15
|
* Merge pull request #96 from t-mat/improve-pr-95Yann Collet2015-04-161-19/+45
|\ | | | | Add LZ4F_OBSOLETE_ENUM() to describe obsolete enums
| * 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
* | minor optimization for small filesYann Collet2015-04-161-38/+53
| |
* | Removed status notification in multiple-files modeYann Collet2015-04-162-5/+6
| |
* | Multiple files decompression refactoringYann Collet2015-04-152-101/+99
|/
* Updated lz4frame error namesYann Collet2015-04-155-25/+22
|
* Merge pull request #95 from t-mat/issue/90Yann Collet2015-04-155-85/+105
|\ | | | | Modified lz4frame enum, by @t-mat
| * Issue#90 : Change old enum names to new oneTakayuki MATSUOKA2015-04-141-15/+15
| |
| * Issue#90 : Change old enum to macro to maximize compatibilityTakayuki MATSUOKA2015-04-141-4/+13
| |
| * Issue#90 : Add LZ4F_ prefixTakayuki MATSUOKA2015-04-144-68/+79
| | | | | | | | | | - Add LZ4F_ prefix to LZ4 frame related enums. - Also add conditional macro LZ4F_DISABLE_OLD_ENUMS for testing and users who prefer strict prefixes.
* | Merge pull request #94 from t-mat/devYann Collet2015-04-151-1/+1
|\ \ | | | | | | Fix LZ4_DEPRECATED() in lz4hc.h
| * | Fix LZ4_DEPRECATED() in lz4hc.hTakayuki MATSUOKA2015-04-151-1/+1
| | |
* | | Merge pull request #91 from t-mat/devYann Collet2015-04-143-13/+13
|\ \ \ | |/ / | | / | |/ |/| Fix LZ4_DEPRECATED() for old compilers
| * 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
|/
* Merge pull request #93 from drcrallen/descriptiveFrameErrorsYann Collet2015-04-142-7/+12
|\ | | | | Revert "Revert "Add more descriptive frame errors""
| * Revert "Revert "Add more descriptive frame errors""Charles Allen2015-04-142-7/+12
|/ | | | This reverts commit 5a6652708439800e30d21e0cd24ed15cfb745a8b.
* Valgrind tests generate errorsYann Collet2015-04-141-10/+10
|
* Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-04-140-0/+0
|\
| * Merge pull request #92 from Cyan4973/revert-89-descriptiveFrameErrorsYann Collet2015-04-142-12/+7
| |\ | | | | | | Revert "Add more descriptive frame errors"
| | * Revert "Add more descriptive frame errors"Yann Collet2015-04-142-12/+7
| |/
| * Merge pull request #89 from drcrallen/descriptiveFrameErrorsYann Collet2015-04-142-7/+12
| |\ | | | | | | Add more descriptive frame errors
| | * Add more descriptive frame errorsCharles Allen2015-04-132-7/+12
| | |
* | | Changes LZ4F_compressBound() definition using NULL prefsPtr to cover worst ↵Yann Collet2015-04-143-5/+6
|/ / | | | | | | case instead of default.
* | lz4io refactoringYann Collet2015-04-141-79/+66
| |
* | New valgrind test with multiple filesYann Collet2015-04-141-0/+3
| |
* | Fix leak issue with compression of multiple filesYann Collet2015-04-141-107/+167
| |
* | Improved performance when compressing a lot of small filesYann Collet2015-04-131-101/+172
| |
* | minor compatibility fixesYann Collet2015-04-134-22/+26
| |
* | Merge pull request #86 from KyleJHarper/origin/r129/multiple_inputs_patchYann Collet2015-04-133-15/+71
|\ \ | | | | | | Origin/r129/multiple inputs patch
| * | Added support for continuation of file compression and decompression if ↵Kyle J Harper2015-04-122-6/+27
| | | | | | | | | | | | input files are missing. Should more closely match gzip/bzip2/xz and so forth. Also removed a debug print accidentally left in.
| * | Added new LZ4IO_decompressMultipleFilenames to allow decompression of ↵Kyle J Harper2015-04-123-14/+49
| |/ | | | | | | multiple files with the -m switch added in r128 (ref: google code issue 151). Limitation: will only process files matching LZ4_EXTENSION macro, which for now seems reasonable.
* | Merge pull request #87 from t-mat/fix-example2Yann Collet2015-04-132-7/+14
|\ \ | | | | | | Replace obsolete functions in example code