Index of /archives/NetBSD/NetBSD-release-9/src/external/zlib/pigz/dist/zopfli
Name Last modified Size Description
Parent Directory -
CVS/ 2024-02-15 03:49 -
CONTRIBUTORS 2014-06-16 02:37 90
makefile 2014-06-16 02:37 101
zopfli_lib.c 2014-06-16 02:37 936
README 2014-06-16 02:37 1.1K
gzip_container.h 2014-06-16 02:37 1.3K
zlib_container.h 2014-06-16 02:37 1.3K
katajainen.h 2014-06-16 02:37 1.5K
tree.h 2014-06-16 02:37 1.6K
zopfli.h 2014-06-16 02:37 2.1K
squeeze.h 2014-06-16 02:37 2.1K
cache.h 2014-06-16 02:37 2.2K
hash.h 2014-06-16 02:37 2.3K
zlib_container.c 2014-06-16 02:37 2.4K
blocksplitter.h 2014-06-16 02:37 2.8K
deflate.h 2014-06-16 02:37 2.8K
tree.c 2014-06-16 02:37 3.3K
gzip_container.c 2014-06-16 02:37 3.5K
cache.c 2014-06-16 02:37 3.6K
hash.c 2014-06-16 02:37 3.7K
lz77.h 2014-06-16 02:37 4.5K
util.h 2014-06-16 02:37 6.0K
zopfli_bin.c 2014-06-16 02:37 6.3K
util.c 2014-06-16 02:37 7.0K
katajainen.c 2014-06-16 02:37 7.7K
blocksplitter.c 2014-06-16 02:37 9.4K
COPYING 2014-06-16 02:37 11K
lz77.c 2014-06-16 02:37 14K
squeeze.c 2014-06-16 02:37 18K
deflate.c 2014-06-16 02:37 24K
Zopfli Compression Algorithm is a compression library programmed in C to perform
very good, but slow, deflate or zlib compression.
zopfli.c is separate from the library and contains an example program to create
very well compressed gzip files.
The basic functions to compress data are ZopfliDeflate in deflate.h,
ZopfliZlibCompress in zlib_container.h and ZopfliGzipCompress in
gzip_container.h. Use the ZopfliOptions object to set parameters that affect the
speed and compression. Use the ZopfliInitOptions function to place the default
values in the ZopfliOptions first.
Deflate creates a valid deflate stream in memory, see:
http://www.ietf.org/rfc/rfc1951.txt
ZlibCompress creates a valid zlib stream in memory, see:
http://www.ietf.org/rfc/rfc1950.txt
GzipCompress creates a valid gzip stream in memory, see:
http://www.ietf.org/rfc/rfc1952.txt
This library can only compress, not decompress. Existing zlib or deflate
libraries can decompress the data.
Zopfli Compression Algorithm was created by Lode Vandevenne and Jyrki
Alakuijala, based on an algorithm by Jyrki Alakuijala.