summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix : asan error in dctx, due to increased maximum frame header size, ↵v1.8.0Yann Collet2017-08-172-3/+4
| | | | reported by Craig Young
* Merge pull request #382 from lz4/installVarsYann Collet2017-08-166-86/+128
|\ | | | | better respect GNU standard Makefile conventions
| * updated lz4frame manualYann Collet2017-08-151-14/+14
| |
| * Merge branch 'dev' into installVars and fixed conflictsYann Collet2017-08-1516-972/+1431
| |\ | |/ |/|
* | Merge pull request #383 from lz4/blockChecksumYann Collet2017-08-1510-347/+453
|\ \ | | | | | | Block checksum
| * | cli : restored command -BX to enable block checksum (#322)Yann Collet2017-08-123-6/+8
| | |
| * | restored block checksum capability at lz4frame API levelYann Collet2017-08-127-341/+445
| | |
* | | Merge pull request #380 from lz4/dictIDYann Collet2017-08-1512-665/+1020
|\ \ \ | |/ / | | | Frame Dictionary API
| * | implemented lz4frame decompression APIYann Collet2017-08-105-72/+141
| | |
| * | support dictionary compression with independent blocksYann Collet2017-08-104-89/+141
| | |
| * | fixed gcc prototype warningYann Collet2017-08-102-5/+1
| | |
| * | dictionary compression correctly uses compression levelYann Collet2017-08-108-53/+107
| | | | | | | | | | | | Not obvious : copying the state was copying cdict's compression level
| * | fixed C++ conversion warningsYann Collet2017-08-101-2/+2
| | |
| * | fixed uninitialization error in lz4frameYann Collet2017-08-101-4/+5
| | |
| * | implemented dictionary compression in lz4frameYann Collet2017-08-099-112/+285
| | | | | | | | | | | | | | | note : only compression API is implemented and tested still to do : decompression API
| * | fixed frameCompress exampleYann Collet2017-08-092-284/+288
| | |
| * | added dictID inside LZ4F_frameInfo_tYann Collet2017-08-094-102/+108
| | | | | | | | | | | | | | | Compressor can set dictID on LZ4F_compressBegin() Decompressor can retrieve it using LZ4F_getFrameInfo()
| | * lz4c legacy commands are now enabled at runtime based on link/binary name "lz4c"Yann Collet2017-08-143-38/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | instead of selected at compilation time depending on a macro. This design makes it possible to have a single binary which supports both modes. An advantageous side effect is that when doing `make; make install` no additional binary is created during `make install` (it used to create `lz4c`, because `make` would only build `lz4`)
| | * fix minor markdown display issuesYann Collet2017-08-142-8/+12
| | |
| | * better respect GNU standard Makefile conventionsYann Collet2017-08-146-63/+102
| |/ |/| | | | | | | | | supports lowercase directory variables add an "Installation" section in README.md added an INSTALL file
* | Merge pull request #378 from deymo/devYann Collet2017-08-112-20/+32
|\ \ | |/ |/| Allow to predefine FORCE_INLINE macro.
| * Allow to predefine FORCE_INLINE macro.Alex Deymo2017-08-072-20/+32
| | | | | | | | | | | | | | | | | | | | | | FORCE_INLINE macro is defined based on the compiler used. When using gcc, it will include "__attribute__((always_inline))" forcing gcc to always inline all the functions marked as FORCE_INLINE. However, this can cause a performance degradation of about 15%. This patch allows to set the FORCE_INLINE macro from the compiler command line to either "static" or "static inline" giving allowing it to inline functions as needed when performing optimizations.
* | updated Frame specificationYann Collet2017-08-082-25/+54
|/ | | | | Restored DictID field in Frame header Bumped specification version to v1.6.0
* Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2017-08-071-1/+2
|\
| * Merge pull request #376 from ido/patch-1Yann Collet2017-08-071-1/+2
| |\ | | | | | | Fix typos preventing installation of static lib.
| | * Fix typos preventing installation of static lib.Ido Rosen2017-08-011-1/+2
| |/
* | Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2017-08-070-0/+0
|\ \ | |/
| * Merge pull request #374 from ferdnyc/patch-2Yann Collet2017-07-091-11/+25
| |\ | | | | | | Generate updated man page from Markdown source
| | * Generate updated man page from Markdown sourceFeRD (Frank Dana)2017-07-081-11/+25
| | |
* | | updated man pageYann Collet2017-08-072-13/+26
|/ /
* | Merge pull request #373 from ferdnyc/patch-2Yann Collet2017-07-081-6/+2
|\ \ | |/ | | Fix formatting of concatenation example
| * Fix formatting of concatenation exampleFeRD (Frank Dana)2017-07-081-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 #369Yann Collet2017-06-262-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-LIBDIRYann Collet2017-06-261-13/+13
|\ | | | | tests/Makefile: don't use LIBDIR as variable
| * tests/Makefile: don't use LIBDIR as variableJussi Kukkonen2017-06-261-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/fallthroughYann Collet2017-06-193-5/+6
|\ | | | | Fix gcc7 Wimplicit-fallthrough warnings
| * Fix gcc7 Wimplicit-fallthrough warningsChocobo12017-06-193-5/+6
| | | | | | | | | | For the default Wimplicit-fallthrough=3 level, the comment should start with "fall*"
* | Merge pull request #368 from Chocobo1/readmeYann Collet2017-06-191-3/+2
|\ \ | |/ |/| Update README.md
| * Update README.mdChocobo12017-06-191-3/+2
|/ | | | | Update appveyor badge URL Remove empty line
* made level 10 a bit fasterYann Collet2017-06-141-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 cliYann Collet2017-06-132-3/+2
|
* clarified lz4frame api comment (#350)Yann Collet2017-06-131-15/+17
|
* report where decompression ends (#313)Yann Collet2017-06-122-39/+63
| | | | | suggested by @ehem note : only works for files < 2 GB
* updated NEWSYann Collet2017-06-122-3/+4
|
* fixed minor scan-build warningYann Collet2017-06-081-0/+1
|
* refactored simple_buffer.c example (#363)Yann Collet2017-06-083-43/+50
|
* added a paragraph on overlap matchesYann Collet2017-06-061-4/+12
|
* cli accept block sizes with KB / MB prefixesYann Collet2017-05-261-2/+10
|
* Merge pull request #360 from Chocobo1/mdYann Collet2017-05-251-2/+2
|\ | | | | [Doc] Fix markdown
| * [Doc] Fix markdownChocobo12017-05-251-2/+2
|/