Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | updated documentation in anticipation for `v1.9.4` release | Yann Collet | 2022-08-11 | 1 | -4/+43 |
| | |||||
* | minor : proper interface for LZ4F_getBlockSize() | Yann Collet | 2022-07-13 | 1 | -37/+14 |
| | | | | | and proper documentation. Also : updated manual | ||||
* | update library version to v1.9.4 | Yann Collet | 2022-04-17 | 1 | -6/+6 |
| | | | | to reduce confusion in traces between dev branch and latest v1.9.3 release. | ||||
* | make UNAME externally definable | Yann Collet | 2021-08-16 | 1 | -2/+2 |
| | | | | | | | on top of providing a central definition place, which eases maintenance, it might also help for #1021. Also : updated doc | ||||
* | update obsolete section documentation | Yann Collet | 2020-11-08 | 1 | -24/+39 |
| | | | | | and update manuals. fix #712 | ||||
* | bump version number | Yann Collet | 2020-09-29 | 1 | -22/+44 |
| | | | | to v1.9.3 | ||||
* | bumped version number to v1.9.2 | Yann Collet | 2019-07-01 | 1 | -2/+2 |
| | | | | to reduce risks that future bug reports in `dev` branch report `v1.9.1` as the failing version. | ||||
* | precise again that LZ4 decoder needs metadata | Yann Collet | 2019-06-06 | 1 | -20/+31 |
| | | | | and that such metadata must be provided / sent / saved by the application. | ||||
* | added more details for in-place documentation | Yann Collet | 2019-05-31 | 1 | -12/+13 |
| | |||||
* | updated API manual | Yann Collet | 2019-05-30 | 1 | -1/+1 |
| | |||||
* | add more doc on in-place (de)compression | Yann Collet | 2019-05-30 | 1 | -5/+25 |
| | |||||
* | added comments and macros for in-place (de)compression | Yann Collet | 2019-05-29 | 1 | -2/+36 |
| | |||||
* | bumped version number | Yann Collet | 2019-04-19 | 1 | -2/+2 |
| | | | | to v1.9.1 | ||||
* | address a few minor Visual warnings | Yann Collet | 2019-04-18 | 1 | -16/+13 |
| | | | | and created target cxx17build | ||||
* | updated doc to underline difference between block and frame | Yann Collet | 2019-04-12 | 1 | -7/+11 |
| | | | | as this is a very frequent source of confusion for new users. | ||||
* | improved documentation for LZ4 dictionary compression | Yann Collet | 2019-04-11 | 1 | -3/+8 |
| | |||||
* | introduce LZ4_DISTANCE_MAX build macro | Yann Collet | 2019-04-11 | 1 | -0/+1 |
| | | | | | | | | | | make it possible to generate LZ4-compressed block with a controlled maximum offset (necessarily <= 65535). This could be useful for compatibility with decoders using a very limited memory budget (<64 KB). Answer #154 | ||||
* | modified LZ4_initStreamHC() to look like LZ4_initStream() | Yann Collet | 2019-04-09 | 1 | -12/+19 |
| | | | | | it is now a pure initializer, for statically allocated states. It can initialize any memory area, and because of this, requires size. | ||||
* | created LZ4_initStream() | Yann Collet | 2019-04-05 | 1 | -44/+43 |
| | | | | | | | | | | - promoted LZ4_resetStream_fast() to stable - moved LZ4_resetStream() into deprecate, but without triggering a compiler warning - update all sources to no longer rely on LZ4_resetStream() note : LZ4_initStream() proposal is slightly different : it's able to initialize any buffer, provided that it's large enough. To this end, it accepts a void*, and returns an LZ4_stream_t*. | ||||
* | make `_fast*()` decoder generate a deprecation warning | Yann Collet | 2019-04-04 | 1 | -26/+39 |
| | | | | updated modification | ||||
* | fixed doc | Yann Collet | 2019-04-03 | 1 | -9/+12 |
| | | | | and bumped version number fo v1.9.0 | ||||
* | moved _destSize() into "stable API" status | Yann Collet | 2019-04-03 | 1 | -7/+14 |
| | | | | as requested in #642 | ||||
* | updated code documentation | Yann Collet | 2018-10-15 | 1 | -10/+15 |
| | | | | to clarify #589 | ||||
* | changed LZ4_streamDecode member order | Yann Collet | 2018-09-25 | 1 | -10/+10 |
| | | | | to reduce memory usage on 128-bits systems | ||||
* | unpublish static-only function | Yann Collet | 2018-09-13 | 1 | -68/+63 |
| | | | | | | | these functions are now unpublished in dll by default. One needs to opt-in, using macro LZ4_PUBLISH_STATIC_FUNCTIONS. used this opportunity to update a bunch of api comments in lz4.h | ||||
* | updated function interface documentation | Yann Collet | 2018-09-07 | 1 | -38/+67 |
| | |||||
* | updated documentation regarding dictionary compression | Yann Collet | 2018-09-05 | 1 | -3/+3 |
| | | | | | | following suggestion from @stbrumme (#558) Also : bumped version number, regenerated man page and html doc | ||||
* | fixed spelling mistake in lz4_manual | Jack Luo | 2018-07-29 | 1 | -1/+1 |
| | |||||
* | updated API documentation | Yann Collet | 2018-05-03 | 1 | -6/+20 |
| | |||||
* | random lz4f clarifications | Yann Collet | 2018-05-02 | 1 | -16/+38 |
| | | | | | | | | | | | | | | the initial intention was to update lz4f ring buffer strategy, but lz4f doesn't use ring buffer. Instead, it uses the destination buffer as much as possible, and merely copies just what's required to preserve history into its own buffer, at the end. Pretty efficient. This patch just clarifies a few comments and add some assert(). It's built on top of #528. It also updates doc. | ||||
* | ensure favorDecSpeed is properly initialized | Yann Collet | 2018-04-27 | 1 | -5/+7 |
| | | | | | | | also : - fix a potential malloc error - proper use of ALLOC macro inside lz4hc - update html API doc | ||||
* | compatibility with gcc-4.4 string.h version | Cyan4973 | 2018-04-13 | 1 | -22/+72 |
| | | | | | | | Someone found it would be a great idea to define there a global variable under the very generic name "index". Cause problem with shadow warnings, so no variable can be named "index" now ... Also : automatically update API manual | ||||
* | bumped version number to v1.8.2 | Yann Collet | 2018-02-26 | 1 | -2/+2 |
| | | | | updated NEWS was current progresses | ||||
* | update code comment on LZ4 streaming interface | Yann Collet | 2018-02-26 | 1 | -10/+11 |
| | | | | | notably regarding LZ4_saveDict() speed advantage, answering #477. | ||||
* | update API doc regarding double-buffer strategy | Yann Collet | 2018-02-18 | 1 | -1/+3 |
| | | | | answering question #473 | ||||
* | fixed code comment as detected in #466 | Yann Collet | 2018-02-07 | 1 | -32/+33 |
| | | | | | Also clarified a few API code comments and updated associated html documentation | ||||
* | refactored frameCompress example | Yann Collet | 2018-01-31 | 1 | -2/+2 |
| | | | | to better reflect LZ4F API usage. | ||||
* | nicer console message for `make clean` | Yann Collet | 2018-01-14 | 1 | -2/+2 |
| | |||||
* | API : changed a few variables' names for clarity | Yann Collet | 2017-11-20 | 1 | -43/+43 |
| | | | | | updated relevant doc. This patch has no impact on ABI/API, nor on binary generation. | ||||
* | complementary information for #394 | Yann Collet | 2017-08-30 | 1 | -9/+15 |
| | |||||
* | clarified documentation of streaming decompression functions | Yann Collet | 2017-08-30 | 1 | -9/+13 |
| | | | | | (synchronous bufferless mode) answering questions by @jtbandes (#394) | ||||
* | build: source files sorted in a FS independent manner | Yann Collet | 2017-08-26 | 1 | -2/+4 |
| | | | | | to be more compatible with reproducible builds. patch inspired by @bmwiedemann | ||||
* | fixed gcc prototype warning | Yann Collet | 2017-08-10 | 1 | -4/+0 |
| | |||||
* | dictionary compression correctly uses compression level | Yann Collet | 2017-08-10 | 1 | -16/+20 |
| | | | | Not obvious : copying the state was copying cdict's compression level | ||||
* | implemented dictionary compression in lz4frame | Yann Collet | 2017-08-09 | 1 | -1/+1 |
| | | | | | note : only compression API is implemented and tested still to do : decompression API | ||||
* | bumped version number to 1.8.0 | Yann Collet | 2017-05-10 | 1 | -2/+2 |
| | | | | | due to addition of prototype LZ4F_resetDecompressionContext() | ||||
* | updated Makefile | Yann Collet | 2017-05-10 | 1 | -9/+9 |
| | | | | | to automatically build manual files with make all | ||||
* | lz4 manual updated to v1.7.5 | Przemyslaw Skibinski | 2017-01-23 | 1 | -89/+126 |
| | |||||
* | Expose internal types to remove strict aliasing | Nick Terrell | 2016-11-11 | 1 | -10/+58 |
| | |||||
* | added lz4_manual.html | Przemyslaw Skibinski | 2016-11-10 | 1 | -0/+240 |