ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * tvd_interface.h
 */
 
typedef enum
{
    TVD_CVBS                = 0,
    TVD_YPBPR_I             = 1,
    TVD_YPBPR_P             = 2,
}tvd_interface_t;
 
typedef enum
{
    TVD_NTSC                = 0,
    TVD_PAL                 = 1,
    TVD_SECAM               = 2,
    TVD_YPBPR               = 3,
}tvd_system_t;
 
typedef enum
{
    TVD_UV_SWAP             = 0,
    TVD_COLOR_SET           = 1,
}tvd_param_t;
 
typedef enum
{
    TVD_PL_YUV420           = 0,
    TVD_MB_YUV420           = 1,
    TVD_PL_YUV422           = 2,
}tvd_fmt_t;
typedef enum
{
    TVD_CHANNEL_ONLY_1      = 0,
    TVD_CHANNEL_ONLY_2      = 1,
    TVD_CHANNEL_ONLY_3      = 2,
    TVD_CHANNEL_ONLY_4      = 3,
    TVD_CHANNEL_ALL_2x2     = 4,
    TVD_CHANNEL_ALL_1x4     = 5,
    TVD_CHANNEL_ALL_4x1     = 6,
}tvd_channel_t;