lz4/lib
2016-06-29 13:21:23 +02:00
..
liblz4.pc.in Updated Makefile and .travis 2015-09-01 15:59:24 +01:00
LICENSE Makefile : generates *.o for faster processing 2015-08-15 17:21:45 +01:00
lz4.c minor refactoring 2016-06-29 13:21:23 +02:00
lz4.h lz4cli: print library version 2016-04-01 07:07:25 -07: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 Fixed a few minor visual analyzer warnings 2015-06-29 00:31:41 -08:00
lz4frame.h Remove whitespace from ends of lines 2016-02-12 22:49:52 -08:00
lz4hc.c heapmode macro option for lz4hc 2015-10-21 15:00:48 +01:00
lz4hc.h Added compilation flag -Wcast-qual 2015-05-06 01:58:24 +01:00
Makefile Add FreeBSD to install targets 2016-05-17 07:47:03 +02:00
README.md Updated lib readme 2015-06-27 14:15:45 -08:00
xxhash.c updated xxhash 2015-08-19 17:54:19 +01:00
xxhash.h Added namespace ability to xxhash 2015-06-27 12:43:28 -08: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)