Enable the static dictionary in the Brotli decoder.

This commit is contained in:
Zoltan Szabadka 2014-03-06 17:25:43 +01:00
parent 2f268ad158
commit cddab4adef

View File

@ -680,8 +680,6 @@ int BrotliDecompress(BrotliInput input, BrotliOutput output) {
- flushing the input ringbuffer when decoding uncompressed blocks */ - flushing the input ringbuffer when decoding uncompressed blocks */
static const int kRingBufferWriteAheadSlack = 128 + BROTLI_READ_SIZE; static const int kRingBufferWriteAheadSlack = 128 + BROTLI_READ_SIZE;
static const int kMaxDictionaryWordLength = 0;
if (!BrotliInitBitReader(&br, input)) { if (!BrotliInitBitReader(&br, input)) {
return 0; return 0;
} }