summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* quickfix (issue 124 & 125)yann.collet.73@gmail.com2014-03-243-25/+32
* Added : lz4cat utility for posx systemsyann.collet.73@gmail.com2014-03-234-16/+38
* Makefile : library correctly compiled with -O3 switch (issue 114)yann.collet.73@gmail.com2014-03-1211-445/+464
* Large decompression speed improvement for GCC 32-bits. Thanks to Valery Croiz...yann.collet.73@gmail.com2014-02-0413-1488/+1855
* quickfix (issue 107 & issue 103)yann.collet.73@gmail.com2014-01-083-7/+11
* Makefile : added capability to install librariesyann.collet.73@gmail.com2014-01-0717-375/+401
* lz4 & lz4hc : added capability to allocate state & stream state with custom a...yann.collet.73@gmail.com2013-12-3015-5487/+5710
* lz4.c : corrected issue 98 within LZ4_compress_limitedOutput()yann.collet.73@gmail.com2013-12-036-16/+26
* lz4.c : corrected compression efficiency issue 97 in 64-bits chained mode (-B...yann.collet.73@gmail.com2013-11-024-14/+24
* Makefile : support DESTDIR for staged installs. Thanks Jorge Aparicio.yann.collet.73@gmail.com2013-10-218-28/+48
* git-svn-id: https://lz4.googlecode.com/svn/trunk@106 650e7d94-2a16-8b24-b05c-...yann.collet.73@gmail.com2013-10-014-17/+32
* Makefile : New install script and man page, contributed by Prasad Pandityann.collet.73@gmail.com2013-09-258-121/+607
* quickfix : removed #include "lz4stream.h" from lz4cli.cyann.collet.73@gmail.com2013-09-091-2/+1
* New command line utility, lz4 (notice the missing final 'c'), with gzip-style...yann.collet.73@gmail.com2013-09-098-197/+317
* LZ4 compression supports block dependency (argument -BD within lz4c command l...yann.collet.73@gmail.com2013-08-166-40/+204
* Removed dependency to "lz4_encoder.h" and "lz4hc_encoder.h"yann.collet.73@gmail.com2013-08-1210-957/+665
* Bugfix releaseyann.collet.73@gmail.com2013-08-072-1/+5
* lz4c : made display and arguments more compatible with gzip, for easier integ...yann.collet.73@gmail.com2013-07-2710-322/+392
* Corrected issue 70, 'pack' instruction on IBM AIXyann.collet.73@gmail.com2013-07-019-50/+84
* lz4.c no longer depends on lz4_decoder.h (removed)yann.collet.73@gmail.com2013-06-1010-433/+1021
* New experimental mode : compress blocks using data from previous blocks (opti...yann.collet.73@gmail.com2013-05-278-121/+415
* lz4c : automatic output name when decoding a *.lz4 file, as requested by Pete...yann.collet.73@gmail.com2013-05-178-534/+593
* - New naming : LZ4_decompress_safe() and LZ4_decompress_fast()yann.collet.73@gmail.com2013-04-2610-914/+1242
* Added : function LZ4_compressHC_limitedOutput()yann.collet.73@gmail.com2013-04-1810-66/+153
* Added : LZ4 Streaming Format specification (v1.3)yann.collet.73@gmail.com2013-04-1316-561/+1371
* Updated : cmake/CMakeLists.txt, by Nobuhiro Iwamatsuyann.collet.73@gmail.com2013-03-307-370/+437
* - New cmake file, by Nobuhiro Iwamatsu, which can also produce shared and sta...yann.collet.73@gmail.com2013-03-026-70/+184
* Corrected issue 59 in lz4hc.c, reported by Masafumi Kiribayashiyann.collet.73@gmail.com2013-02-194-25/+109
* LZ4HC : compression speed improved under Visualyann.collet.73@gmail.com2013-01-084-352/+414
* LZ4_HC is now compatible with CPU requiring aligned memory accessesyann.collet.73@gmail.com2012-12-221-3/+3
* Improved endianess detectionyann.collet.73@gmail.com2012-12-214-18/+69
* Improved decoding speed, thanks to several contributions from Ludvig Strigeus...yann.collet.73@gmail.com2012-12-111-30/+33
* LZ4 HC : extended detection window. Thanks to Adrien Grand.yann.collet.73@gmail.com2012-11-306-22/+80
* Corrected a bug into LZ4_uncompress_unknownOutputSize() introduced in r82yann.collet.73@gmail.com2012-11-051-17/+16
* Corrected issue 38 : bench.c compilation for Sun Solaris 32 bitsyann.collet.73@gmail.com2012-11-033-9/+14
* Corrected issue 39 : bench.c for NetBSD. Thanks to Thomas Klausner.yann.collet.73@gmail.com2012-10-271-8/+32
* Corrected Issue 34 (restrict)yann.collet.73@gmail.com2012-10-262-22/+15
* - Corrected issue 31 : LZ4 correctly accepts compressing data when the output...yann.collet.73@gmail.com2012-10-243-20/+188
* Correct issue 36 on LZ4_uncompress_unknownOutputSize(). Thanks to Clayton Sta...yann.collet.73@gmail.com2012-10-162-460/+460
* Correction : LZ4_compress_limitedOutput() write too far erroryann.collet.73@gmail.com2012-08-221-0/+2
* changed some macro names in lz4hc to avoid duplicate definition on NetBSDyann.collet.73@gmail.com2012-08-141-4/+4
* Fixed Visual 2005 issues (warning/linking)yann.collet.73@gmail.com2012-08-134-37/+49
* LZ4.c : changed inline to "static inline" to comply with limitations from GCC...yann.collet.73@gmail.com2012-08-081-4/+4
* Improved speed under Visualyann.collet.73@gmail.com2012-08-032-1/+39
* Fixed : small compression speed hit on GCC v4.5 introduced by r71yann.collet.73@gmail.com2012-08-013-8/+14
* Added : function LZ4_compress_limitedOutput()yann.collet.73@gmail.com2012-07-282-63/+57
* lz4.c : changed a tuning parameter name to MEMORY_USAGE, to better reflect it...yann.collet.73@gmail.com2012-07-242-10/+12
* Changed Makefile default setting to generate only native binary.yann.collet.73@gmail.com2012-07-181-6/+6
* git-svn-id: https://lz4.googlecode.com/svn/trunk@68 650e7d94-2a16-8b24-b05c-7...yann.collet.73@gmail.com2012-06-161-1/+1
* Update CMake file to handle lz4hc. Thanks to Mark Wotton for notification and...yann.collet.73@gmail.com2012-06-081-1/+1