A simple video codec.
#ifndef VCODEC_H
#define VCODEC_H
typedef struct {
char id[10]; //I.D. of file, should be "FORJUNEV"
short fps; //frame per second
int nframes; //number of frames
short width; //width of video frame
short height; //height of video frame
char bpp; //bits per pixel
char qmethod; //quantization method
char ext; //extension
} VHEADER;
#endif