moved out- the functions in here used to be in swfvideo.c.
[swftools.git] / lib / h.263 / dct.h
1 #ifndef __dct_h__
2 #define __dct_h__
3     
4 void dct(int*src);
5 void idct(int*src);
6
7 void preparequant(int quant);
8 void dct2(int*src, int*dest);
9
10 int zigzagtable[64];
11 void zigzag(int*src);
12
13 #endif //__dct_h__