summaryrefslogtreecommitdiffstats
path: root/lz4.c
Commit message (Expand)AuthorAgeFilesLines
* Makefile : support DESTDIR for staged installs. Thanks Jorge Aparicio.yann.collet.73@gmail.com2013-10-211-0/+1
* Makefile : New install script and man page, contributed by Prasad Pandityann.collet.73@gmail.com2013-09-251-1/+1
* New command line utility, lz4 (notice the missing final 'c'), with gzip-style...yann.collet.73@gmail.com2013-09-091-47/+43
* LZ4 compression supports block dependency (argument -BD within lz4c command l...yann.collet.73@gmail.com2013-08-161-24/+115
* Removed dependency to "lz4_encoder.h" and "lz4hc_encoder.h"yann.collet.73@gmail.com2013-08-121-188/+220
* lz4c : made display and arguments more compatible with gzip, for easier integ...yann.collet.73@gmail.com2013-07-271-65/+59
* Corrected issue 70, 'pack' instruction on IBM AIXyann.collet.73@gmail.com2013-07-011-16/+28
* lz4.c no longer depends on lz4_decoder.h (removed)yann.collet.73@gmail.com2013-06-101-83/+164
* New experimental mode : compress blocks using data from previous blocks (opti...yann.collet.73@gmail.com2013-05-271-3/+3
* lz4c : automatic output name when decoding a *.lz4 file, as requested by Pete...yann.collet.73@gmail.com2013-05-171-22/+31
* - New naming : LZ4_decompress_safe() and LZ4_decompress_fast()yann.collet.73@gmail.com2013-04-261-544/+241
* Added : function LZ4_compressHC_limitedOutput()yann.collet.73@gmail.com2013-04-181-12/+6
* Added : LZ4 Streaming Format specification (v1.3)yann.collet.73@gmail.com2013-04-131-21/+23
* Updated : cmake/CMakeLists.txt, by Nobuhiro Iwamatsuyann.collet.73@gmail.com2013-03-301-0/+1
* - New cmake file, by Nobuhiro Iwamatsu, which can also produce shared and sta...yann.collet.73@gmail.com2013-03-021-33/+65
* Improved endianess detectionyann.collet.73@gmail.com2012-12-211-8/+18
* 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-301-2/+1
* 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-031-4/+4
* Corrected Issue 34 (restrict)yann.collet.73@gmail.com2012-10-261-4/+4
* - Corrected issue 31 : LZ4 correctly accepts compressing data when the output...yann.collet.73@gmail.com2012-10-241-9/+9
* Correct issue 36 on LZ4_uncompress_unknownOutputSize(). Thanks to Clayton Sta...yann.collet.73@gmail.com2012-10-161-430/+430
* Correction : LZ4_compress_limitedOutput() write too far erroryann.collet.73@gmail.com2012-08-221-0/+2
* Fixed Visual 2005 issues (warning/linking)yann.collet.73@gmail.com2012-08-131-11/+12
* 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-031-0/+38
* Fixed : small compression speed hit on GCC v4.5 introduced by r71yann.collet.73@gmail.com2012-08-011-2/+8
* Added : function LZ4_compress_limitedOutput()yann.collet.73@gmail.com2012-07-281-36/+33
* lz4.c : changed a tuning parameter name to MEMORY_USAGE, to better reflect it...yann.collet.73@gmail.com2012-07-241-9/+9
* Added : LZ4 HC : Now integrated into main trunk.yann.collet.73@gmail.com2012-05-131-0/+4
* minor : Force Software-bit-count for WinCE environment under Visual. Thanks B...yann.collet.73@gmail.com2012-05-091-4/+4
* Corrected : linking stage of Visual 2005 in Debug mode (issue 16)yann.collet.73@gmail.com2012-05-071-52/+60
* Added : cmake configuration file, from Dmitry Cherepanovyann.collet.73@gmail.com2012-04-081-27/+27
* Corrected : minor : changed a macro name to avoid duplicate within NetBSD. Th...yann.collet.73@gmail.com2012-04-031-4/+4
* Added : lz4demo : software swap32 backend for compilers which do not support ...yann.collet.73@gmail.com2012-03-161-2/+2
* minor code refactoring, mostly around __builtin_expectyann.collet.73@gmail.com2012-03-091-20/+23
* Small speed improvement (compression & decompression), Thanks Maciej Adamczyk...yann.collet.73@gmail.com2012-03-011-24/+36
* Added : format description fileyann.collet.73@gmail.com2012-02-251-3/+12
* Corrected : default to Software Bit Count for GCC earlier than 3.4. Thanks to...yann.collet.73@gmail.com2012-02-201-43/+35
* Added : LZ4_compressBound() functionyann.collet.73@gmail.com2012-02-161-81/+92
* Minor comments refactoring, for better clarityyann.collet.73@gmail.com2012-02-061-43/+67
* minor interface modification : source pointers are now (const char*)yann.collet.73@gmail.com2012-02-011-5/+5
* Better detection of Big-Endian and PowerPC CPUyann.collet.73@gmail.com2012-02-011-27/+43
* Corrected a bug in the decoder in 64-bit modeyann.collet.73@gmail.com2012-01-161-4/+6
* Improved compression speed for 64-bit CPUsyann.collet.73@gmail.com2012-01-141-16/+23
* Improved compression speed for 64-bit CPUyann.collet.73@gmail.com2012-01-131-21/+66
* Improved compression speed for big-endian CPUyann.collet.73@gmail.com2012-01-101-112/+73
* Decompression speed improved in 64-bit modeyann.collet.73@gmail.com2012-01-091-44/+102
* Improved compression and decompression speed on 64-bits CPUyann.collet.73@gmail.com2012-01-071-7/+22