Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed C++ conversion warnings | Yann Collet | 2017-08-10 | 1 | -2/+2 |
| | |||||
* | fixed uninitialization error in lz4frame | Yann Collet | 2017-08-10 | 1 | -4/+5 |
| | |||||
* | implemented dictionary compression in lz4frame | Yann Collet | 2017-08-09 | 9 | -112/+285 |
| | | | | | note : only compression API is implemented and tested still to do : decompression API | ||||
* | fixed frameCompress example | Yann Collet | 2017-08-09 | 2 | -284/+288 |
| | |||||
* | added dictID inside LZ4F_frameInfo_t | Yann Collet | 2017-08-09 | 4 | -102/+108 |
| | | | | | Compressor can set dictID on LZ4F_compressBegin() Decompressor can retrieve it using LZ4F_getFrameInfo() | ||||
* | updated Frame specification | Yann Collet | 2017-08-08 | 2 | -25/+54 |
| | | | | | Restored DictID field in Frame header Bumped specification version to v1.6.0 | ||||
* | Merge branch 'dev' of github.com:Cyan4973/lz4 into dev | Yann Collet | 2017-08-07 | 1 | -1/+2 |
|\ | |||||
| * | Merge pull request #376 from ido/patch-1 | Yann Collet | 2017-08-07 | 1 | -1/+2 |
| |\ | | | | | | | Fix typos preventing installation of static lib. | ||||
| | * | Fix typos preventing installation of static lib. | Ido Rosen | 2017-08-01 | 1 | -1/+2 |
| |/ | |||||
* | | Merge branch 'dev' of github.com:Cyan4973/lz4 into dev | Yann Collet | 2017-08-07 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Merge pull request #374 from ferdnyc/patch-2 | Yann Collet | 2017-07-09 | 1 | -11/+25 |
| |\ | | | | | | | Generate updated man page from Markdown source | ||||
| | * | Generate updated man page from Markdown source | FeRD (Frank Dana) | 2017-07-08 | 1 | -11/+25 |
| | | | |||||
* | | | updated man page | Yann Collet | 2017-08-07 | 2 | -13/+26 |
|/ / | |||||
* | | Merge pull request #373 from ferdnyc/patch-2 | Yann Collet | 2017-07-08 | 1 | -6/+2 |
|\ \ | |/ | | | Fix formatting of concatenation example | ||||
| * | Fix formatting of concatenation example | FeRD (Frank Dana) | 2017-07-08 | 1 | -6/+2 |
|/ | | | | | | The "Concatenation of .lz4 files" section contains example commands that are run together on one line, making them invalid. Wrap them in a code block and clean up surrounding formatting. | ||||
* | fix #369 | Yann Collet | 2017-06-26 | 2 | -1/+18 |
| | | | | | | | | | | | | | | The bug would make the bt search read one byte in an invalid memory region, and make a branch decision based on its value. Impact was small (missed compression opportunity). It only happens in -BD mode, with extDict-prefix overlapping matches. The bt match search is supposed to work also in extDict mode. In which case, the match ptr can point into Dict. When the match was overlapping Dict<->Prefix, match[matchLength] would end up outside of Dict, in an invalid memory area. The correction ensures that in such a case, match[matchLength] ends up at intended location, inside prefix. | ||||
* | Merge pull request #371 from jku/tests-LIBDIR | Yann Collet | 2017-06-26 | 1 | -13/+13 |
|\ | | | | | tests/Makefile: don't use LIBDIR as variable | ||||
| * | tests/Makefile: don't use LIBDIR as variable | Jussi Kukkonen | 2017-06-26 | 1 | -13/+13 |
|/ | | | | | LIBDIR may be overriden with a environment variable: In this case make clean breaks in tests/. Use another variable name. | ||||
* | Merge pull request #367 from Chocobo1/fallthrough | Yann Collet | 2017-06-19 | 3 | -5/+6 |
|\ | | | | | Fix gcc7 Wimplicit-fallthrough warnings | ||||
| * | Fix gcc7 Wimplicit-fallthrough warnings | Chocobo1 | 2017-06-19 | 3 | -5/+6 |
| | | | | | | | | | | For the default Wimplicit-fallthrough=3 level, the comment should start with "fall*" | ||||
* | | Merge pull request #368 from Chocobo1/readme | Yann Collet | 2017-06-19 | 1 | -3/+2 |
|\ \ | |/ |/| | Update README.md | ||||
| * | Update README.md | Chocobo1 | 2017-06-19 | 1 | -3/+2 |
|/ | | | | | Update appveyor badge URL Remove empty line | ||||
* | made level 10 a bit faster | Yann Collet | 2017-06-14 | 1 | -6/+7 |
| | | | | | | | at the expense of a little bit of compression ratio. Now speed is intermediate on calgary corpus : 25 - 12 - 8 - 3 | ||||
* | -g compilation flag not by default for lz4 cli | Yann Collet | 2017-06-13 | 2 | -3/+2 |
| | |||||
* | clarified lz4frame api comment (#350) | Yann Collet | 2017-06-13 | 1 | -15/+17 |
| | |||||
* | report where decompression ends (#313) | Yann Collet | 2017-06-12 | 2 | -39/+63 |
| | | | | | suggested by @ehem note : only works for files < 2 GB | ||||
* | updated NEWS | Yann Collet | 2017-06-12 | 2 | -3/+4 |
| | |||||
* | fixed minor scan-build warning | Yann Collet | 2017-06-08 | 1 | -0/+1 |
| | |||||
* | refactored simple_buffer.c example (#363) | Yann Collet | 2017-06-08 | 3 | -43/+50 |
| | |||||
* | added a paragraph on overlap matches | Yann Collet | 2017-06-06 | 1 | -4/+12 |
| | |||||
* | cli accept block sizes with KB / MB prefixes | Yann Collet | 2017-05-26 | 1 | -2/+10 |
| | |||||
* | Merge pull request #360 from Chocobo1/md | Yann Collet | 2017-05-25 | 1 | -2/+2 |
|\ | | | | | [Doc] Fix markdown | ||||
| * | [Doc] Fix markdown | Chocobo1 | 2017-05-25 | 1 | -2/+2 |
|/ | |||||
* | Merge pull request #359 from PierreNav/dev | Yann Collet | 2017-05-23 | 1 | -1/+2 |
|\ | | | | | Add DLL files to the INSTALL target | ||||
| * | Add DLL files to the INSTALL target | PierreNav | 2017-05-23 | 1 | -1/+2 |
|/ | |||||
* | Merge pull request #352 from lz4/resetDCtx | Yann Collet | 2017-05-11 | 13 | -246/+321 |
|\ | | | | | Reset decompression context | ||||
| * | fix (minor) g++ compatibility for frametest | Yann Collet | 2017-05-11 | 1 | -1/+1 |
| | | |||||
| * | added test for LZ4F_resetDecompressionContext() | Yann Collet | 2017-05-10 | 5 | -59/+79 |
| | | |||||
| * | fixed c_standards tests | Yann Collet | 2017-05-10 | 2 | -11/+16 |
| | | | | | | | | and added entry "make list" | ||||
| * | bumped version number to 1.8.0 | Yann Collet | 2017-05-10 | 3 | -6/+6 |
| | | | | | | | | | | due to addition of prototype LZ4F_resetDecompressionContext() | ||||
| * | updated Makefile | Yann Collet | 2017-05-10 | 8 | -103/+140 |
| | | | | | | | | | | to automatically build manual files with make all | ||||
| * | expose LZ4F_resetDecompressionContext() | Yann Collet | 2017-05-10 | 2 | -65/+80 |
| | | |||||
| * | minor readability changes | Yann Collet | 2017-05-02 | 1 | -22/+20 |
|/ | |||||
* | changed macro HEAPMODE into LZ4_HEAPMODE | Yann Collet | 2017-05-02 | 2 | -13/+14 |
| | | | | | | | This macro is susceptible to be triggered from user side typically through compiler flag (-DLZ4_HEAPMODE=1). In which case, it makes sense to prefix the macro since we want to reduce potential side-effect on namespace. | ||||
* | Merge pull request #349 from svpv/master | Yann Collet | 2017-04-30 | 3 | -3/+5 |
|\ | | | | | clamp hc levels > 12 + minor fixes in comments | ||||
| * | lz4hc.c: clamp compression levels > 12 | Alexey Tourbin | 2017-04-29 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I noticed that, while 'lz4 -12' works fine, 'lz4 -13' does not compress at all. $ cat </etc/passwd |wc -c 2565 $ lz4 -12 </etc/passwd |wc -c 1456 $ lz4 -13 </etc/passwd |wc -c 2584 Perhaps the best way to fix this is to clamp the compression level in the LZ4HC_compress_generic routine. | ||||
| * | lz4cli.c: fix a comment: LZ4HC_DEFAULT_CLEVEL -> LZ4HC_CLEVEL_MAX | Alexey Tourbin | 2017-04-29 | 1 | -1/+1 |
| | | | | | | | | Actually the program only mentions LZ4HC_CLEVEL_MAX. | ||||
| * | liz4hc.h: fix a comment: LZ4HC_MAX_CLEVEL -> LZ4HC_CLEVEL_MAX | Alexey Tourbin | 2017-04-29 | 1 | -2/+2 |
|/ | |||||
* | Merge pull request #348 from terrelln/deprecate | Yann Collet | 2017-04-26 | 1 | -5/+9 |
|\ | | | | | [LZ4F] Allow users to disable LZ4F_DEPRECATE | ||||
| * | [LZ4F] Allow users to disable LZ4F_DEPRECATE | Nick Terrell | 2017-04-26 | 1 | -5/+9 |
|/ |