dec/decode.h


Log

Author Commit Date CI Message
Zoltan Szabadka bacc7349 2015-10-05T10:23:32 Fix some more compiler warnings in the decoder.
Zoltan Szabadka a7cedfc2 2015-09-23T12:24:06 Update brotli decoder with latest improvements.
Lode Vandevenne 94cd7085 2015-08-10T13:35:23 brotli decoder performance improvements
Lode Vandevenne bad0f4ed 2015-06-26T17:37:00 Brotli Bug Fixes
Zoltan Szabadka b43df8f6 2015-06-12T15:43:54 Brotli custom LZ77 dictionary support. Adds functions to prepend such dictionary to the encoder and decoder, and twiddles their internal parameters to do as if that was a previous part of the input. This dictionary is just a prefilled LZ77 window, it is not related to the built in transformable brotli dictionary.
Zoltan Szabadka 64c26111 2015-04-22T17:33:21 Add partial output support to the decoder.
Zoltan Szabadka c5ccd0df 2015-03-27T13:54:43 Change the return value of decoder functions from integer codes to an enum.
Lode Vandevenne 8270250b 2015-03-20T16:13:15 support for partial input (streaming)
Lode Vandevenne 81cb09f1 2015-03-20T15:44:15 separate the licenses from documentation
Zoltan Szabadka 79d2b89d 2014-10-15T13:41:00 Fix BrotliDecompressedSize() to work for an uncompressed plus an empty meta-block.
Zoltan Szabadka 0454ab4e 2014-02-14T15:04:23 Updates to Brotli compression format, decoder and encoder This commit contains a batch of changes that were made to the Brotli compression algorithm in the last month. Most important changes: * Fixes to the spec. * Change of code length code order. * Use a 2-level Huffman lookup table in the decoder. * Faster uncompressed meta-block decoding. * Optimized encoding of the Huffman code. * Detection of UTF-8 input encoding. * UTF-8 based literal cost modeling for improved backward reference selection.
Zoltan Szabadka b8a10085 2013-12-16T14:45:57 Use C-style comments in the brotli decoder.
Zoltan Szabadka c6b9c7c5 2013-11-15T19:02:17 Updates to Brotli compression format, decoder and encoder This commit contains a batch of changes that were made to the Brotli compression algorithm in the last three weeks. Most important changes: * Added UTF8 context model for good text compression. * Simplified context modeling by having only 4 context modes. * Per-block context mode selection. * Faster backward copying and bit reading functions. * More efficient histogram coding. * Streaming support for the decoder and encoder.
Zoltan Szabadka 8f30907d 2013-10-11T10:26:07 Add brotli decompressor This commit is for the decoder for brotli compression format. Brotli is a generic byte-level compression algorithm.