summaryrefslogtreecommitdiff
path: root/drivers/theora/huffenc.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/theora/huffenc.h')
-rw-r--r--drivers/theora/huffenc.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/theora/huffenc.h b/drivers/theora/huffenc.h
new file mode 100644
index 0000000000..c5a3956f1f
--- /dev/null
+++ b/drivers/theora/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