lz4/lib
Kouhei Sutou 012c66536c Add LZ4LIB_API
It's based on Zstandard's ZSTDLIB_API.

See also: https://github.com/Cyan4973/lz4/issues/216#issuecomment-226245432

Deprecated functions aren't LZ4LIB_API targets. Because we don't need to
export deprecated functions from now.

There are same LZ4LIB_API definitions in each header files instead of
including a common header file because LZ4_DEPRECATED is defined so.
2016-09-23 00:39:45 +09:00
..
.gitignore lz4 version source from lz4.h 2016-09-02 22:04:16 -07:00
liblz4.pc.in lz4 version source from lz4.h 2016-09-02 22:04:16 -07:00
LICENSE Makefile : generates *.o for faster processing 2015-08-15 17:21:45 +01:00
lz4.c removed test artefacts 2016-09-06 16:46:52 +02:00
lz4.h Add LZ4LIB_API 2016-09-23 00:39:45 +09:00
lz4frame_static.h Updated LZ4F_getFrameInfo() behavior, related to uncomplete frame header decoding attempts 2015-04-19 15:23:53 +01:00
lz4frame.c Merge pull request #236 from inikep/dev 2016-09-06 16:49:34 +02:00
lz4frame.h Add LZ4LIB_API 2016-09-23 00:39:45 +09:00
lz4hc.c lz4cli version number from lz4.h 2016-09-02 19:32:06 -07:00
lz4hc.h Add LZ4LIB_API 2016-09-23 00:39:45 +09:00
Makefile Add LZ4LIB_API 2016-09-23 00:39:45 +09:00
README.md Updated lib readme 2015-06-27 14:15:45 -08:00
xxhash.c Use https wherever possible 2016-07-08 00:46:02 +02:00
xxhash.h Updated xxhash library to v0.6.1 2016-06-29 21:48:27 +02:00

LZ4 - Library Files

The lib directory contains several files, but you don't necessarily need them all.

To integrate fast LZ4 compression/decompression into your program, you basically just need "lz4.c" and "lz4.h".

For more compression at the cost of compression speed (while preserving decompression speed), use lz4hc on top of regular lz4. lz4hc only provides compression functions. It also needs lz4 to compile properly.

If you want to produce files or data streams compatible with lz4 command line utility, use lz4frame. This library encapsulates lz4-compressed blocks into the official interoperable frame format. In order to work properly, lz4frame needs lz4 and lz4hc, and also xxhash, which provides error detection algorithm. (Advanced stuff : It's possible to hide xxhash symbols into a local namespace. This is what liblz4 does, to avoid symbol duplication in case a user program would link to several libraries containing xxhash symbols.)

A more complex "lz4frame_static.h" is also provided, although its usage is not recommended. It contains definitions which are not guaranteed to remain stable within future versions. Use for static linking only.

The other files are not source code. There are :

  • LICENSE : contains the BSD license text
  • Makefile : script to compile or install lz4 library (static or dynamic)
  • liblz4.pc.in : for pkg-config (make install)