diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-13 19:40:40 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-15 11:50:41 +0200 |
commit | cfcc8a20e862b758c32bd3f152186e6df0591a24 (patch) | |
tree | e9cf6ebad67c17ae60b8beb4d1468cbc94dbb982 /thirdparty/libtheora/huffenc.h | |
parent | da09c6131bcdace7e8e62c3dabc62890e9564c97 (diff) | |
download | redot-engine-cfcc8a20e862b758c32bd3f152186e6df0591a24.tar.gz |
theora: Move to a module and split thirdparty lib
Same rationale as the previous commits.
Diffstat (limited to 'thirdparty/libtheora/huffenc.h')
-rw-r--r-- | thirdparty/libtheora/huffenc.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/thirdparty/libtheora/huffenc.h b/thirdparty/libtheora/huffenc.h new file mode 100644 index 0000000000..c5a3956f1f --- /dev/null +++ b/thirdparty/libtheora/huffenc.h @@ -0,0 +1,19 @@ +#if !defined(_huffenc_H) +# define _huffenc_H (1) +# include "huffman.h" + + + +typedef th_huff_code th_huff_table[TH_NDCT_TOKENS]; + + + +extern const th_huff_code + TH_VP31_HUFF_CODES[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS]; + + + +int oc_huff_codes_pack(oggpack_buffer *_opb, + const th_huff_code _codes[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS]); + +#endif |