A simple video codec.
#ifndef DCT_VIDEO_H #define DCT_VIDEO_H void dct(int *X, int *Y); void idct(int *Y, int *X); #endif