huffenc.h 350 B

1234567891011121314151617181920
  1. #if !defined(_huffenc_H)
  2. # define _huffenc_H (1)
  3. # include "huffman.h"
  4. typedef th_huff_code th_huff_table[TH_NDCT_TOKENS];
  5. extern const th_huff_code
  6. TH_VP31_HUFF_CODES[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS];
  7. int oc_huff_codes_pack(oggpack_buffer *_opb,
  8. const th_huff_code _codes[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS]);
  9. #endif