Sample program for converting RGB to YCbCr to DCT coefficients and vice versa.
#ifndef DCT_VIDEO_H #define DCT_VIDEO_H void dct(int *X, int *Y); void idct(int *Y, int *X); #endif