moved out- the functions in here used to be in swfvideo.c.
[swftools.git] / lib / h.263 / dct.h
diff --git a/lib/h.263/dct.h b/lib/h.263/dct.h
new file mode 100644 (file)
index 0000000..6d7e411
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef __dct_h__
+#define __dct_h__
+    
+void dct(int*src);
+void idct(int*src);
+
+void preparequant(int quant);
+void dct2(int*src, int*dest);
+
+int zigzagtable[64];
+void zigzag(int*src);
+
+#endif //__dct_h__