blob: 3cc9c54a0b5b6f061e62c3517c68fd14452b4351 (
plain)
1
2
3
4
5
6
|
extern void idct_sq(short *coef, int *q); // <-- scaled integer idct WITH de-quantization
extern void idct_s(int *t, short *y); // <-- scaled integer idct
extern int zigzag[64];
extern int SCALEM[64];
extern unsigned char *CLIP;
|