- a9d8640 Makefile : library correctly compiled with -O3 switch (issue 114) by yann.collet.73@gmail.com · 11 years ago
- 69dc85b Large decompression speed improvement for GCC 32-bits. Thanks to Valery Croizier ! by yann.collet.73@gmail.com · 11 years ago
- fb38dda lz4 & lz4hc : added capability to allocate state & stream state with custom allocator (issue 99) by yann.collet.73@gmail.com · 11 years ago
- 8ac549f lz4.c : corrected issue 98 within LZ4_compress_limitedOutput() by yann.collet.73@gmail.com · 11 years ago
- 7a863ab lz4.c : corrected compression efficiency issue 97 in 64-bits chained mode (-BD) for streams > 4 GB (thanks Roman Strashkin for reporting) by yann.collet.73@gmail.com · 11 years ago
- a78db58 Makefile : support DESTDIR for staged installs. Thanks Jorge Aparicio. by yann.collet.73@gmail.com · 11 years ago
- c63f81c Makefile : New install script and man page, contributed by Prasad Pandit by yann.collet.73@gmail.com · 11 years ago
- 3e65c1e New command line utility, lz4 (notice the missing final 'c'), with gzip-style arguments (issue 83) by yann.collet.73@gmail.com · 11 years ago
- 02c5579 LZ4 compression supports block dependency (argument -BD within lz4c command line) by yann.collet.73@gmail.com · 11 years ago
- 27efcd4 Removed dependency to "lz4_encoder.h" and "lz4hc_encoder.h" by yann.collet.73@gmail.com · 11 years ago
- 13e966d lz4c : made display and arguments more compatible with gzip, for easier integration with tar (patch by Yaakov Selkowitz) by yann.collet.73@gmail.com · 11 years ago
- 002a934 Corrected issue 70, 'pack' instruction on IBM AIX by yann.collet.73@gmail.com · 11 years ago
- 16c0942 lz4.c no longer depends on lz4_decoder.h (removed) by yann.collet.73@gmail.com · 11 years ago
- cd3bcd0 New experimental mode : compress blocks using data from previous blocks (option -BD) (limitation : -hc mode only) by yann.collet.73@gmail.com · 11 years ago
- e185b25 lz4c : automatic output name when decoding a *.lz4 file, as requested by Peter Humphreys by yann.collet.73@gmail.com · 12 years ago
- 40ae704 - New naming : LZ4_decompress_safe() and LZ4_decompress_fast() by yann.collet.73@gmail.com · 12 years ago
- a2e93db Added : function LZ4_compressHC_limitedOutput() by yann.collet.73@gmail.com · 12 years ago
- cbfd031 Added : LZ4 Streaming Format specification (v1.3) by yann.collet.73@gmail.com · 12 years ago
- 647baab Updated : cmake/CMakeLists.txt, by Nobuhiro Iwamatsu by yann.collet.73@gmail.com · 12 years ago
- 633c519 - New cmake file, by Nobuhiro Iwamatsu, which can also produce shared and static libraries. by yann.collet.73@gmail.com · 12 years ago
- 26b82f3 Improved endianess detection by yann.collet.73@gmail.com · 12 years ago
- 024f83c Improved decoding speed, thanks to several contributions from Ludvig Strigeus (issues 49, 50 & 54) by yann.collet.73@gmail.com · 12 years ago
- ffb27d4 LZ4 HC : extended detection window. Thanks to Adrien Grand. by yann.collet.73@gmail.com · 12 years ago
- 43a03b4 Corrected a bug into LZ4_uncompress_unknownOutputSize() introduced in r82 by yann.collet.73@gmail.com · 12 years ago
- 5cc3efc Corrected issue 38 : bench.c compilation for Sun Solaris 32 bits by yann.collet.73@gmail.com · 12 years ago
- 7185dc0 Corrected Issue 34 (restrict) minor macro renaming (fuzzer.c) by yann.collet.73@gmail.com · 12 years ago
- b1e707f - Corrected issue 31 : LZ4 correctly accepts compressing data when the output buffer has exactly the required size (it was a bit over-cautious in previous version). by yann.collet.73@gmail.com · 12 years ago
- 66be402 Correct issue 36 on LZ4_uncompress_unknownOutputSize(). Thanks to Clayton Stangeland and Maciej Adamczyk for notifying. by yann.collet.73@gmail.com · 12 years ago
- 9577c97 Correction : LZ4_compress_limitedOutput() write too far error by yann.collet.73@gmail.com · 12 years ago
- 6078c33 Fixed Visual 2005 issues (warning/linking) by yann.collet.73@gmail.com · 12 years ago
- 4e11dc6 LZ4.c : changed inline to "static inline" to comply with limitations from GCC/LLVM combination under OS-X. by yann.collet.73@gmail.com · 12 years ago
- 19a078b Improved speed under Visual by yann.collet.73@gmail.com · 12 years ago
- 89921dd Fixed : small compression speed hit on GCC v4.5 introduced by r71 by yann.collet.73@gmail.com · 12 years ago
- 84004b9 Added : function LZ4_compress_limitedOutput() by yann.collet.73@gmail.com · 12 years ago
- cfbace2 lz4.c : changed a tuning parameter name to MEMORY_USAGE, to better reflect its impact by yann.collet.73@gmail.com · 12 years ago
- 8dfb9d6 Added : LZ4 HC : Now integrated into main trunk. LZ4_HC license moved to BSD by yann.collet.73@gmail.com · 13 years ago
- d8184bf minor : Force Software-bit-count for WinCE environment under Visual. Thanks Bayang for Reporting. by yann.collet.73@gmail.com · 13 years ago
- ae9eead Corrected : linking stage of Visual 2005 in Debug mode (issue 16) by yann.collet.73@gmail.com · 13 years ago
- 6cedd1f Added : cmake configuration file, from Dmitry Cherepanov by yann.collet.73@gmail.com · 13 years ago
- ee1c281 Corrected : minor : changed a macro name to avoid duplicate within NetBSD. Thanks Gray for reporting (Issue 15) by yann.collet.73@gmail.com · 13 years ago
- fd281f8 Added : lz4demo : software swap32 backend for compilers which do not support hardware ones. Thanks Dmitry Cherepanov for contribution by yann.collet.73@gmail.com · 13 years ago
- ad59ba1 minor code refactoring, mostly around __builtin_expect by yann.collet.73@gmail.com · 13 years ago
- 89767cc Small speed improvement (compression & decompression), Thanks Maciej Adamczyk for suggestion by yann.collet.73@gmail.com · 13 years ago
- 3430ee1 Added : format description file by yann.collet.73@gmail.com · 13 years ago
- ecbce64 Corrected : default to Software Bit Count for GCC earlier than 3.4. Thanks to Gray. by yann.collet.73@gmail.com · 13 years ago
- 4045a42 Added : LZ4_compressBound() function by yann.collet.73@gmail.com · 13 years ago
- 7b6ba04 Minor comments refactoring, for better clarity by yann.collet.73@gmail.com · 13 years ago
- 9485884 minor interface modification : source pointers are now (const char*) by yann.collet.73@gmail.com · 13 years ago
- 2327aa4 Better detection of Big-Endian and PowerPC CPU by yann.collet.73@gmail.com · 13 years ago
- 572cab7 Corrected a bug in the decoder in 64-bit mode by yann.collet.73@gmail.com · 13 years ago
- 93577f8 Improved compression speed for 64-bit CPUs by yann.collet.73@gmail.com · 13 years ago
- 868c459 Improved compression speed for 64-bit CPU by yann.collet.73@gmail.com · 13 years ago
- 99b3294 Improved compression speed for big-endian CPU by yann.collet.73@gmail.com · 13 years ago
- 4fa4221 Decompression speed improved in 64-bit mode by yann.collet.73@gmail.com · 13 years ago
- aac2572 Improved compression and decompression speed on 64-bits CPU by yann.collet.73@gmail.com · 13 years ago
- f20be40 Improved compression speed. Thanks to David Sterba for suggestion. by yann.collet.73@gmail.com · 13 years ago
- 8ee5799 Endianess correction by yann.collet.73@gmail.com · 13 years ago
- 3963071 Endianess correction by yann.collet.73@gmail.com · 13 years ago
- bf12ca9 Slightly improved compression speed by yann.collet.73@gmail.com · 13 years ago
- 70ba2c4 Better compliance with C99 and non-C99 compilators by yann.collet.73@gmail.com · 13 years ago
- 62c39e2 Modified makefile to specify C99 support to compiler (GCC) by yann.collet.73@gmail.com · 13 years ago
- 439f270 Slightly improved decoding speed under GCC compilation by yann.collet.73@gmail.com · 13 years ago
- 667f8ea Corrected a bug in LZ4_uncompress_unknownOutputSize(), which reported incorrect decodedSize when maxOutputSize=decodedSize. Thanks to Clayton Stangeland for report and solution. by yann.collet.73@gmail.com · 13 years ago
- 5f0ef5b code refactoring by yann.collet.73@gmail.com · 13 years ago
- da90372 - Improved compression ratio by yann.collet.73@gmail.com · 13 years ago
- ea53527 New : ARM Validated code, thanks to Vlad Grachov. by yann.collet.73@gmail.com · 13 years ago
- 7a40bd9 Modified a few comments by yann.collet.73@gmail.com · 13 years ago
- d899a39 updated LZ4_uncompress_unknownOutputSize() by yann.collet.73@gmail.com · 13 years ago
- 420248c CLI : added test mode by yann.collet.73@gmail.com · 13 years ago
- dab6b9d CLI : Added : capability to compress/decompress to NULL (useful for testings) by yann.collet.73@gmail.com · 13 years ago
- e1ae3a0 Small compression speed improvement Decoding speed improvement by yann.collet.73@gmail.com · 13 years ago
- 3071281 Corrected issue 3 in compression function. Update is recommended. by yann.collet.73@gmail.com · 13 years ago
- 90bd461 minor code refactoring removed harmless warning under gcc for linux by yann.collet.73@gmail.com · 13 years ago
- d9bf974 Small compression speed improvement by yann.collet.73@gmail.com · 13 years ago
- babbc0f removed an harmless warning under gcc for linux by yann.collet.73@gmail.com · 13 years ago
- e8d1e99 small compression speed improvement by yann.collet.73@gmail.com · 13 years ago
- d5a574c Corrected : a bug in compression function which could make it read beyond input buffer in some circumstances (issue 2). by yann.collet.73@gmail.com · 13 years ago
- 15d69c3 small compression speed improvement by yann.collet.73@gmail.com · 13 years ago
- 86a59c7 small compression speed improvement by yann.collet.73@gmail.com · 13 years ago
- 32f4bab Small compression speed improvement by yann.collet.73@gmail.com · 13 years ago
- 558c03a Corrected a (rare) bug in compression function by yann.collet.73@gmail.com · 13 years ago
- 3a6d964 LZ4Demo now supports Pipe mode (inspired by Huan Truong mod) by yann.collet.73@gmail.com · 13 years ago
- 8860e61 Removed LZ4_decode() function code. by yann.collet.73@gmail.com · 13 years ago
- a201020 Improved compression and decompression speed under GCC compiler by yann.collet.73@gmail.com · 13 years ago
- 075bf13 Greatly improved compression and decompression speed, at the expense of some compression ratio. by yann.collet.73@gmail.com · 13 years ago
- 6b798d5 New function : LZ4_uncompress : secure version which is safe against buffer overflow attacks by yann.collet.73@gmail.com · 13 years ago
- ca8d6c2 Improved : safe type, for linux x64 (amd64) compatibility (Thanks to Erik Andersen) by yann.collet.73@gmail.com · 14 years ago[Renamed (94%) from LZ4.c]
- 06abb77 Added some comments for better clarity by yann.collet.73@gmail.com · 14 years ago
- f033754 Correction : enforced typecasting for compatibility with gcc on *nix systems. by yann.collet.73@gmail.com · 14 years ago
- cfcae8a Strict end-of-buffer checks License changed to BSD by yann.collet.73@gmail.com · 14 years ago
- 3610461 by yann.collet.73@gmail.com · 14 years ago