From 7f848593bd2ec83f4537b6d494a5bf55b9bd4456 Mon Sep 17 00:00:00 2001 From: Zoltan Szabadka Date: Thu, 6 Mar 2014 17:25:43 +0100 Subject: [PATCH] Enable the static dictionary in the Brotli decoder. --- brotli/dec/decode.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/brotli/dec/decode.c b/brotli/dec/decode.c index 8ef8942..fc66e15 100644 --- a/brotli/dec/decode.c +++ b/brotli/dec/decode.c @@ -680,8 +680,6 @@ int BrotliDecompress(BrotliInput input, BrotliOutput output) { - flushing the input ringbuffer when decoding uncompressed blocks */ static const int kRingBufferWriteAheadSlack = 128 + BROTLI_READ_SIZE; - static const int kMaxDictionaryWordLength = 0; - if (!BrotliInitBitReader(&br, input)) { return 0; }