huffenc.h 475 B

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