summaryrefslogtreecommitdiffstats
path: root/programs
Commit message (Collapse)AuthorAgeFilesLines
* Updated : compress multiple filesYann Collet2015-03-076-101/+127
|
* Merge pull request #52 from KyleJHarper/r128/multiple_inputsYann Collet2015-03-031-58/+84
|\ | | | | Adding support for multiple file processing. Fixes Google code issue 151.
| * Added support for multiple input files to act more like other compressors. ↵kyle2015-03-021-58/+84
| | | | | | | | For example: gzip file1 file2 file3. You can now do: lz4 [args] -m file1 file2 file3. Fixes 151.
* | Merge pull request #49 from t-mat/msvc-fseeki64Yann Collet2015-03-011-0/+3
|\ \ | | | | | | Avoid MSVC fseek()'s 2GiB barrier
| * | Replace fseek with _fseeki64 to avoid MSVC's 2GiB barrierTakayuki MATSUOKA2015-02-141-0/+3
| |/ | | | | | | | | Since MSVC fseek()'s SEEK_CUR mode has 2GiB barrier, our fseek() calling in program/lz4io.c/selectDecoder() will fail for large (>2GiB) .lz4 file. This commit just replace fseek with _fseeki64 by macro. Second argument is automatically casted to __int64 (signed 64bit integer). Other things are completely same.
* | restored lz4 hc compression ratioYann Collet2015-03-012-27/+148
|/
* Added : -pedantic compilation optionYann Collet2014-12-171-1/+1
|
* C90 compatibilityYann Collet2014-12-171-2/+2
|
* Fixed : older compiler don't like nameless unions, reported by Cheyi LinYann Collet2014-12-164-264/+264
|
* Fixed : bug within LZ4 HC streaming mode, reported by James BoyleYann Collet2014-12-162-19/+23
|
* New : lz4frame integrated into liblz4 (v1.5.0)Yann Collet2014-12-133-14/+14
|
* minor memtest correctionYann Collet2014-12-101-1/+1
|
* Fixed : LZ4_compress_limitedOutput() bug, as reported by Christopher SpellerYann Collet2014-12-102-18/+19
|
* stronger tests for LZ4_compress_limitedOutput()Yann Collet2014-12-101-61/+76
|
* minor refactoringYann Collet2014-12-064-44/+17
|
* lz4cli : legacy arguments are now disabled by defaultYann Collet2014-12-012-12/+12
|
* New directory structure : library source files into /lib directoryYann Collet2014-11-302-5/+5
|
* LZ4IO : modified to use lz4frame insteadYann Collet2014-11-304-455/+166
|
* Fixed : some minor Visual warningsYann Collet2014-11-301-1/+1
|
* Updated lz4hc : re-use most shared elements from lz4 (endianess / align / ↵Yann Collet2014-11-291-1/+1
| | | | bus detection routines)
* Fixed : decompression issue on 32-bits CPU without unaligned memory accessYann Collet2014-11-291-14/+1
|
* Improved decoding speedYann Collet2014-11-271-2/+18
|
* Added : $(EXT) within install for cross-compilation supportYann Collet2014-11-231-7/+7
|
* Corrected lz4ioYann Collet2014-11-232-2/+2
|
* Makefile : refactored Travis CI testsYann Collet2014-11-041-23/+4
|
* Fixed issue 44 : stopped concatenated stream on null size frame (thanks to ↵Yann Collet2014-11-042-16/+21
| | | | Brendan O'Connor)
* Makefile : added -Wcast-align compilation warningYann Collet2014-11-041-1/+1
|
* Updated unsynchronized buffers testsYann Collet2014-11-041-5/+50
|
* fullbench : display Algorithm NbYann Collet2014-11-031-7/+7
|
* Optimized LZ4_saveDictHC()Yann Collet2014-11-021-23/+42
|
* Added : valgrind test for fuzzerYann Collet2014-10-292-2/+3
|
* minor fuzzer test correctionYann Collet2014-10-291-0/+1
|
* Fixed : frametest for Travis CI build matrixYann Collet2014-10-281-4/+4
|
* new Travis CI build matrixYann Collet2014-10-281-16/+33
|
* Added : frametest32Yann Collet2014-10-281-2/+9
|
* LZ4 HC streaming integrated within lz4frameYann Collet2014-10-273-11/+12
|
* HC streaming : support for very long streaming (> 4 GB) scenariosYann Collet2014-10-261-5/+55
|
* HC streaming : support small ringbuffer scenariosYann Collet2014-10-252-148/+265
|
* fixed LZ4F_compressFrameBound (dynamic block resize)Yann Collet2014-10-211-7/+8
|
* LZ4 HC : fixed small dictionary streaming compressionYann Collet2014-10-201-5/+54
|
* LZ4 HC : External Dictionary compression : First implementation Yann Collet2014-10-201-32/+68
|
* fuzzer : easier random replayYann Collet2014-10-191-17/+17
|
* fuzzer : fixed test 21Yann Collet2014-10-191-4/+2
|
* fuzzer : faster jump to testNbYann Collet2014-10-191-13/+22
|
* fuzzer : fixed minor command lines issuesYann Collet2014-10-181-16/+16
|
* updated LZ4HC APIYann Collet2014-10-182-3/+91
|
* fuzzer : pause at the end is disabled by defaultYann Collet2014-10-101-334/+358
|
* modified : fuzzer automatically selects seedYann Collet2014-10-092-41/+30
|
* Updated : xxHash to r37Yann Collet2014-10-061-14/+14
|
* Fixed : LZ4F_compressBound() using null preferencesPtrYann Collet2014-10-051-9/+8
| | | Updated : frametest, to check LZ4F_compressBound() using null preferencesPtr