1 #ifndef QUICKTIME_WMX1_H
2 #define QUICKTIME_WMX1_H
4 #define WMX_CHUNK_FRAMES 50
10 quicktime_yuv_t yuv_tables
;
11 unsigned char *frame_cache
[WMX_CHUNK_FRAMES
]; /* Frames that are similar enough to pack. */
12 unsigned char *key_frame
; /* Packed frames for writing. */
13 long keyframe_position
;
16 /* The YUV4 codec requires a bytes per line that is a multiple of 4 */
18 /* Actual rows encoded in the yuv4 format */
22 int threshold
; /* How different a pixel must be for it to be called different. */
23 } quicktime_wmx1_codec_t
;