| Index: third_party/brotli/dec/huffman.h
|
| diff --git a/third_party/brotli/dec/huffman.h b/third_party/brotli/dec/huffman.h
|
| index fc880810c66658d7bbe735208dd045c611709915..d3b4d53e69fce5228e4d2be949261f93e8be83a9 100644
|
| --- a/third_party/brotli/dec/huffman.h
|
| +++ b/third_party/brotli/dec/huffman.h
|
| @@ -9,7 +9,7 @@
|
| #ifndef BROTLI_DEC_HUFFMAN_H_
|
| #define BROTLI_DEC_HUFFMAN_H_
|
|
|
| -#include "./types.h"
|
| +#include <brotli/types.h>
|
| #include "./port.h"
|
|
|
| #if defined(__cplusplus) || defined(c_plusplus)
|
| @@ -18,16 +18,16 @@ extern "C" {
|
|
|
| #define BROTLI_HUFFMAN_MAX_CODE_LENGTH 15
|
|
|
| -/* For current format this constant equals to kNumInsertAndCopyCodes */
|
| -#define BROTLI_HUFFMAN_MAX_CODE_LENGTHS_SIZE 704
|
| -
|
| /* Maximum possible Huffman table size for an alphabet size of (index * 32),
|
| * max code length 15 and root table bits 8. */
|
| static const uint16_t kMaxHuffmanTableSize[] = {
|
| 256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 694, 726, 758, 790, 822,
|
| 854, 886, 920, 952, 984, 1016, 1048, 1080};
|
| +/* BROTLI_NUM_BLOCK_LEN_SYMBOLS == 26 */
|
| #define BROTLI_HUFFMAN_MAX_SIZE_26 396
|
| +/* BROTLI_MAX_BLOCK_TYPE_SYMBOLS == 258 */
|
| #define BROTLI_HUFFMAN_MAX_SIZE_258 632
|
| +/* BROTLI_MAX_CONTEXT_MAP_SYMBOLS == 272 */
|
| #define BROTLI_HUFFMAN_MAX_SIZE_272 646
|
|
|
| #define BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH 5
|
|
|