/* Copyright 2013 Google Inc. All Rights Reserved. Distributed under MIT license. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT */ /* Lookup tables to map prefix codes to value ranges. This is used during decoding of the block lengths, literal insertion lengths and copy lengths. */ #ifndef BROTLI_DEC_PREFIX_H_ #define BROTLI_DEC_PREFIX_H_ #include <brotli/types.h> #include "../common/constants.h" CmdLutElement; static const CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS] = …; #endif /* BROTLI_DEC_PREFIX_H_ */