1
2
3
4
5
6
7
8
9
10
11
12
13
14 #define BASE (1<<0)
15 #define BASE_TYPES (BASE|F8MHZ|MTS|FM|INPUT1|INPUT2|INIT1)
16
17
18 #define F8MHZ (1<<1)
19
20
21
22
23
24
25
26
27 #define MTS (1<<2)
28
29
30
31
32 #define D2620 (1<<3)
33 #define D2633 (1<<4)
34
35
36
37
38
39 #define DTV6 (1 << 5)
40 #define QAM (1 << 6)
41 #define DTV7 (1<<7)
42 #define DTV78 (1<<8)
43 #define DTV8 (1<<9)
44
45 #define DTV_TYPES (D2620|D2633|DTV6|QAM|DTV7|DTV78|DTV8|ATSC)
46
47
48 #define FM (1<<10)
49
50 #define STD_SPECIFIC_TYPES (MTS|FM|LCD|NOGD)
51
52
53
54
55 #define INPUT1 (1<<11)
56
57
58
59
60
61
62
63 #define LCD (1<<12)
64
65
66
67
68
69 #define NOGD (1<<13)
70
71
72 #define INIT1 (1<<14)
73
74
75 #define MONO (1 << 15)
76 #define ATSC (1 << 16)
77 #define IF (1 << 17)
78 #define LG60 (1 << 18)
79 #define ATI638 (1 << 19)
80 #define OREN538 (1 << 20)
81 #define OREN36 (1 << 21)
82 #define TOYOTA388 (1 << 22)
83 #define TOYOTA794 (1 << 23)
84 #define DIBCOM52 (1 << 24)
85 #define ZARLINK456 (1 << 25)
86 #define CHINA (1 << 26)
87 #define F6MHZ (1 << 27)
88 #define INPUT2 (1 << 28)
89 #define SCODE (1 << 29)
90
91
92 #define HAS_IF (1 << 30)
93
94
95
96
97 #define SCODE_TYPES (SCODE | MTS)
98
99
100
101
102
103
104
105
106
107
108 #define V4L2_STD_SECAM_K3 (0x04000000)
109
110
111
112 #define V4L2_STD_A2_A (1LL<<32)
113 #define V4L2_STD_A2_B (1LL<<33)
114 #define V4L2_STD_NICAM_A (1LL<<34)
115 #define V4L2_STD_NICAM_B (1LL<<35)
116 #define V4L2_STD_AM (1LL<<36)
117 #define V4L2_STD_BTSC (1LL<<37)
118 #define V4L2_STD_EIAJ (1LL<<38)
119
120 #define V4L2_STD_A2 (V4L2_STD_A2_A | V4L2_STD_A2_B)
121 #define V4L2_STD_NICAM (V4L2_STD_NICAM_A | V4L2_STD_NICAM_B)
122
123
124
125
126
127 #define V4L2_STD_AUDIO (V4L2_STD_A2 | \
128 V4L2_STD_NICAM | \
129 V4L2_STD_AM | \
130 V4L2_STD_BTSC | \
131 V4L2_STD_EIAJ)
132
133
134
135 #define V4L2_STD_PAL_BG_A2_A (V4L2_STD_PAL_BG | V4L2_STD_A2_A)
136 #define V4L2_STD_PAL_BG_A2_B (V4L2_STD_PAL_BG | V4L2_STD_A2_B)
137 #define V4L2_STD_PAL_BG_NICAM_A (V4L2_STD_PAL_BG | V4L2_STD_NICAM_A)
138 #define V4L2_STD_PAL_BG_NICAM_B (V4L2_STD_PAL_BG | V4L2_STD_NICAM_B)
139 #define V4L2_STD_PAL_DK_A2 (V4L2_STD_PAL_DK | V4L2_STD_A2)
140 #define V4L2_STD_PAL_DK_NICAM (V4L2_STD_PAL_DK | V4L2_STD_NICAM)
141 #define V4L2_STD_SECAM_L_NICAM (V4L2_STD_SECAM_L | V4L2_STD_NICAM)
142 #define V4L2_STD_SECAM_L_AM (V4L2_STD_SECAM_L | V4L2_STD_AM)