1 #if !defined(_huffenc_H)
2 # define _huffenc_H (1)
3 # include "huffman.h"
4 
5 
6 
7 typedef th_huff_code                  th_huff_table[TH_NDCT_TOKENS];
8 
9 
10 
11 extern const th_huff_code
12  TH_VP31_HUFF_CODES[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS];
13 
14 
15 
16 int oc_huff_codes_pack(oggpack_buffer *_opb,
17  const th_huff_code _codes[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS]);
18 
19 #endif
20