summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* Added : LZ4 HC : Now integrated into main trunk.yann.collet.73@gmail.com2012-05-137-20/+768
* Added : LZ4Demo : can handle appended compressed streams.yann.collet.73@gmail.com2012-05-122-36/+28
* minor : Force Software-bit-count for WinCE environment under Visual. Thanks B...yann.collet.73@gmail.com2012-05-092-4/+10
* Corrected : linking stage of Visual 2005 in Debug mode (issue 16)yann.collet.73@gmail.com2012-05-072-53/+62
* Added : cmake configuration file, from Dmitry Cherepanovyann.collet.73@gmail.com2012-04-085-57/+109
* Corrected : minor : changed a macro name to avoid duplicate within NetBSD. Th...yann.collet.73@gmail.com2012-04-032-5/+6
* Added : lz4demo : software swap32 backend for compilers which do not support ...yann.collet.73@gmail.com2012-03-163-4/+13
* minor code refactoring, mostly around __builtin_expectyann.collet.73@gmail.com2012-03-095-38/+80
* Small speed improvement (compression & decompression), Thanks Maciej Adamczyk...yann.collet.73@gmail.com2012-03-013-42/+57
* Added : format description fileyann.collet.73@gmail.com2012-02-253-17/+151
* Corrected : default to Software Bit Count for GCC earlier than 3.4. Thanks to...yann.collet.73@gmail.com2012-02-204-81/+120
* Added : LZ4_compressBound() functionyann.collet.73@gmail.com2012-02-165-112/+142
* 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-013-11/+11