commit | e94bddd013504b99d67cec8346ee6728a5f488c1 | [log] [tgz] |
---|---|---|
author | szabadka <szabadka@users.noreply.github.com> | Thu Apr 23 15:56:54 2015 +0200 |
committer | szabadka <szabadka@users.noreply.github.com> | Thu Apr 23 15:56:54 2015 +0200 |
tree | 445718dc08b43481e9dbd3de8bf20552de6a07d1 | |
parent | 16a219bbc2617bb53abd6ae2c83b08e9d25cd3a3 [diff] | |
parent | e91a4492c711c8b6d313f1fc8e8c5ca4ac5a5ad7 [diff] |
Merge pull request #86 from szabadka/master Add a static hash table based dictionary lookup to fast brotli.
Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.
The specification of the Brotli Compressed Data Format is defined in the following internet draft: http://www.ietf.org/id/draft-alakuijala-brotli
Brotli is open-sourced under the Apache License, Version 2.0, see the LICENSE file.