]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/BrotliCustomDecompressLib/dec/huffman.h
MdeModulePkg: Add Brotli algorithm decompression library
[mirror_edk2.git] / MdeModulePkg / Library / BrotliCustomDecompressLib / dec / huffman.h
1 /* Copyright 2013 Google Inc. All Rights Reserved.
2
3 Distributed under MIT license.
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
6
7 /* Utilities for building Huffman decoding tables. */
8
9 #ifndef BROTLI_DEC_HUFFMAN_H_
10 #define BROTLI_DEC_HUFFMAN_H_
11
12 #include "../common/types.h"
13 #include "./port.h"
14 #include <BrotliDecompressLibInternal.h>
15
16 #if defined(__cplusplus) || defined(c_plusplus)
17 extern "C" {
18 #endif
19
20 #define BROTLI_HUFFMAN_MAX_CODE_LENGTH 15
21
22 /* Maximum possible Huffman table size for an alphabet size of (index * 32),
23 * max code length 15 and root table bits 8. */
24 static const uint16_t kMaxHuffmanTableSize[] = {
25 256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 694, 726, 758, 790, 822,
26 854, 886, 920, 952, 984, 1016, 1048, 1080};
27 /* BROTLI_NUM_BLOCK_LEN_SYMBOLS == 26 */
28 #define BROTLI_HUFFMAN_MAX_SIZE_26 396
29 /* BROTLI_MAX_BLOCK_TYPE_SYMBOLS == 258 */
30 #define BROTLI_HUFFMAN_MAX_SIZE_258 632
31 /* BROTLI_MAX_CONTEXT_MAP_SYMBOLS == 272 */
32 #define BROTLI_HUFFMAN_MAX_SIZE_272 646
33
34 #define BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH 5
35
36 typedef struct {
37 uint8_t bits; /* number of bits used for this symbol */
38 uint16_t value; /* symbol value or table offset */
39 } HuffmanCode;
40
41 /* Builds Huffman lookup table assuming code lengths are in symbol order. */
42 BROTLI_INTERNAL void BrotliBuildCodeLengthsHuffmanTable(HuffmanCode* root_table,
43 const uint8_t* const code_lengths, uint16_t* count);
44
45 /* Builds Huffman lookup table assuming code lengths are in symbol order. */
46 /* Returns size of resulting table. */
47 BROTLI_INTERNAL uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
48 int root_bits, const uint16_t* const symbol_lists, uint16_t* count_arg);
49
50 /* Builds a simple Huffman table. The num_symbols parameter is to be */
51 /* interpreted as follows: 0 means 1 symbol, 1 means 2 symbols, 2 means 3 */
52 /* symbols, 3 means 4 symbols with lengths 2,2,2,2, 4 means 4 symbols with */
53 /* lengths 1,2,3,3. */
54 BROTLI_INTERNAL uint32_t BrotliBuildSimpleHuffmanTable(HuffmanCode* table,
55 int root_bits, uint16_t* symbols, uint32_t num_symbols);
56
57 /* Contains a collection of Huffman trees with the same alphabet size. */
58 typedef struct {
59 HuffmanCode** htrees;
60 HuffmanCode* codes;
61 uint16_t alphabet_size;
62 uint16_t num_htrees;
63 } HuffmanTreeGroup;
64
65 #if defined(__cplusplus) || defined(c_plusplus)
66 } /* extern "C" */
67 #endif
68
69 #endif /* BROTLI_DEC_HUFFMAN_H_ */