aboutsummaryrefslogtreecommitdiff
path: root/c/dec/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/dec/state.h')
-rw-r--r--c/dec/state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/dec/state.h b/c/dec/state.h
index 5946124..00c373b 100644
--- a/c/dec/state.h
+++ b/c/dec/state.h
@@ -172,7 +172,7 @@ struct BrotliDecoderStateStruct {
uint32_t space;
HuffmanCode table[32];
- /* List of of symbol chains. */
+ /* List of heads of symbol chains. */
uint16_t* symbol_lists;
/* Storage from symbol_lists. */
uint16_t symbols_lists_array[BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1 +
@@ -215,6 +215,7 @@ struct BrotliDecoderStateStruct {
unsigned int is_uncompressed : 1;
unsigned int is_metadata : 1;
unsigned int should_wrap_ringbuffer : 1;
+ unsigned int canny_ringbuffer_allocation : 1;
unsigned int size_nibbles : 8;
uint32_t window_bits;