r955: Fix the Diffkey icon.
[cinelerra_cv.git] / quicktime / yuv9.h
blob03ab60e8f2a3d53d9578ed6bc20cc3293b5aa525
1 #ifndef QUICKTIME_YUV9_H
2 #define QUICKTIME_YUV9_H
4 #include "yuv.h"
6 typedef struct
8 quicktime_yuv_t *yuv;
9 unsigned char *work_buffer;
11 /* The YUV9 codec requires a bytes per line that is a multiple of 16 */
12 int bytes_per_line;
13 /* Actual rows encoded in the yuv4 format */
14 int rows;
15 } quicktime_yuv4_codec_t;
18 /* Now storing data as rows of UVYYYYUVYYYY */
20 #endif