Index of /archives/NetBSD/NetBSD-release-9/src/external/zlib/pigz/dist/zopfli
Name Last modified Size Description
Parent Directory -
deflate.c 2014-06-16 02:37 24K
squeeze.c 2014-06-16 02:37 18K
lz77.c 2014-06-16 02:37 14K
COPYING 2014-06-16 02:37 11K
blocksplitter.c 2014-06-16 02:37 9.4K
katajainen.c 2014-06-16 02:37 7.7K
util.c 2014-06-16 02:37 7.0K
zopfli_bin.c 2014-06-16 02:37 6.3K
util.h 2014-06-16 02:37 6.0K
lz77.h 2014-06-16 02:37 4.5K
hash.c 2014-06-16 02:37 3.7K
cache.c 2014-06-16 02:37 3.6K
gzip_container.c 2014-06-16 02:37 3.5K
tree.c 2014-06-16 02:37 3.3K
deflate.h 2014-06-16 02:37 2.8K
blocksplitter.h 2014-06-16 02:37 2.8K
zlib_container.c 2014-06-16 02:37 2.4K
hash.h 2014-06-16 02:37 2.3K
cache.h 2014-06-16 02:37 2.2K
squeeze.h 2014-06-16 02:37 2.1K
zopfli.h 2014-06-16 02:37 2.1K
tree.h 2014-06-16 02:37 1.6K
katajainen.h 2014-06-16 02:37 1.5K
zlib_container.h 2014-06-16 02:37 1.3K
gzip_container.h 2014-06-16 02:37 1.3K
README 2014-06-16 02:37 1.1K
zopfli_lib.c 2014-06-16 02:37 936
makefile 2014-06-16 02:37 101
CONTRIBUTORS 2014-06-16 02:37 90
CVS/ 2024-02-15 03:49 -
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.