commit | 43d4f45b6e8635406e1709fcc938c12f3d11d76f | [log] [tgz] |
---|---|---|
author | Eugene Kliuchnikov <eustas@google.com> | Mon Jul 25 10:17:04 2016 +0200 |
committer | Eugene Kliuchnikov <eustas@google.com> | Mon Jul 25 10:17:04 2016 +0200 |
tree | 7a5ac652684fb57626a0f1e95ed8b0a5db5109f0 | |
parent | 7acb34f7ccef3cde2c6ac18c9d3f475c325cc2c2 [diff] |
Update decoder API: * replace prefix Brotli -> BrotliDecoder * add HasMoreOutput * make instance pointer the first argument * use boolean instead of int
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 MIT License, see the LICENSE file.
Brotli mailing list: https://groups.google.com/forum/#!forum/brotli
Independent decoder implementation by Mark Adler, based entirely on format specification.
JavaScript port of brotli decoder. Could be used directly via npm install brotli