00001 #ifndef QUICKTIME_GRAPHICS_H
00002 #define QUICKTIME_GRAPHICS_H
00003
00004 typedef struct
00005 {
00006 long rtoy_tab[256], gtoy_tab[256], btoy_tab[256];
00007 long rtou_tab[256], gtou_tab[256], btou_tab[256];
00008 long rtov_tab[256], gtov_tab[256], btov_tab[256];
00009
00010 long vtor_tab[256], vtog_tab[256];
00011 long utog_tab[256], utob_tab[256];
00012 long *vtor, *vtog, *utog, *utob;
00013 } quicktime_yuv_t;
00014
00015 typedef struct
00016 {
00017 int *input_x;
00018 int *input_y;
00019 int in_w, in_h, out_w, out_h;
00020 } quicktime_scaletable_t;
00021
00022 #endif