Skip to content

Commit

Permalink
Reduce the size of the decompressor context structure
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeuz committed Dec 11, 2018
1 parent 8ce5367 commit df1ab05
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hal/src/photon/miniz.h
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,8 @@ enum
TINFL_MAX_HUFF_SYMBOLS_0 = 288,
TINFL_MAX_HUFF_SYMBOLS_1 = 32,
TINFL_MAX_HUFF_SYMBOLS_2 = 19,
TINFL_FAST_LOOKUP_BITS = 10,
/* The value of this field has been changed from 10 to 5 to reduce the size of the tinfl_decompressor structure */
TINFL_FAST_LOOKUP_BITS = 5,
TINFL_FAST_LOOKUP_SIZE = 1 << TINFL_FAST_LOOKUP_BITS
};

Expand Down

0 comments on commit df1ab05

Please sign in to comment.