allow ffmpeg video to resample curr_pos, add bluray format
[goodguy/history.git] / cinelerra-5.0 / quicktime / graphics.h
1 #ifndef QUICKTIME_GRAPHICS_H
2 #define QUICKTIME_GRAPHICS_H
3
4 typedef struct
5 {
6         long rtoy_tab[256], gtoy_tab[256], btoy_tab[256];
7         long rtou_tab[256], gtou_tab[256], btou_tab[256];
8         long rtov_tab[256], gtov_tab[256], btov_tab[256];
9
10         long vtor_tab[256], vtog_tab[256];
11         long utog_tab[256], utob_tab[256];
12         long *vtor, *vtog, *utog, *utob;
13 } quicktime_yuv_t;
14
15 typedef struct
16 {
17         int *input_x;
18         int *input_y;
19         int in_w, in_h, out_w, out_h;
20 } quicktime_scaletable_t;
21
22 #endif