NameDateSize

..12-Oct-201512

blocksplitter.cH A D15-Jun-20149.4 KiB

blocksplitter.hH A D15-Jun-20142.8 KiB

cache.cH A D15-Jun-20143.6 KiB

cache.hH A D15-Jun-20142.2 KiB

CONTRIBUTORSH A D15-Jun-201490

COPYINGH A D15-Jun-201411.1 KiB

deflate.cH A D15-Jun-201424.1 KiB

deflate.hH A D15-Jun-20142.8 KiB

gzip_container.cH A D15-Jun-20143.5 KiB

gzip_container.hH A D15-Jun-20141.3 KiB

hash.cH A D15-Jun-20143.7 KiB

hash.hH A D15-Jun-20142.3 KiB

katajainen.cH A D15-Jun-20147.7 KiB

katajainen.hH A D15-Jun-20141.5 KiB

lz77.cH A D15-Jun-201414.1 KiB

lz77.hH A D15-Jun-20144.5 KiB

makefileH A D15-Jun-2014101

READMEH A D15-Jun-20141.1 KiB

squeeze.cH A D15-Jun-201417.5 KiB

squeeze.hH A D15-Jun-20142.1 KiB

tree.cH A D15-Jun-20143.3 KiB

tree.hH A D15-Jun-20141.6 KiB

util.cH A D15-Jun-20147 KiB

util.hH A D15-Jun-20146 KiB

zlib_container.cH A D15-Jun-20142.4 KiB

zlib_container.hH A D15-Jun-20141.3 KiB

zopfli.hH A D15-Jun-20142.1 KiB

zopfli_bin.cH A D15-Jun-20146.3 KiB

zopfli_lib.cH A D15-Jun-2014936

README

1Zopfli Compression Algorithm is a compression library programmed in C to perform
2very good, but slow, deflate or zlib compression.
3
4zopfli.c is separate from the library and contains an example program to create
5very well compressed gzip files.
6
7The basic functions to compress data are ZopfliDeflate in deflate.h,
8ZopfliZlibCompress in zlib_container.h and ZopfliGzipCompress in
9gzip_container.h. Use the ZopfliOptions object to set parameters that affect the
10speed and compression. Use the ZopfliInitOptions function to place the default
11values in the ZopfliOptions first.
12
13Deflate creates a valid deflate stream in memory, see:
14http://www.ietf.org/rfc/rfc1951.txt
15ZlibCompress creates a valid zlib stream in memory, see:
16http://www.ietf.org/rfc/rfc1950.txt
17GzipCompress creates a valid gzip stream in memory, see:
18http://www.ietf.org/rfc/rfc1952.txt
19
20This library can only compress, not decompress. Existing zlib or deflate
21libraries can decompress the data.
22
23Zopfli Compression Algorithm was created by Lode Vandevenne and Jyrki
24Alakuijala, based on an algorithm by Jyrki Alakuijala.
25