Mercurial > mplayer.hg
annotate stream/tv.h @ 29256:1d5deeae441d
Get rid of some more trailing whitespace
author | reynaldo |
---|---|
date | Tue, 12 May 2009 03:03:35 +0000 |
parents | 7406e7f30d4e |
children | 0f1b5b68af32 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_TV_H |
2 #define MPLAYER_TV_H | |
2790 | 3 |
17012 | 4 //#include "libao2/afmt.h" |
19431
ac69ba536915
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents:
19271
diff
changeset
|
5 //#include "libmpcodecs/img_format.h" |
2830 | 6 //#include "mp_msg.h" |
2802 | 7 |
23882 | 8 typedef struct tv_param_s { |
9 char *freq; | |
10 char *channel; | |
11 char *chanlist; | |
12 char *norm; | |
13 int automute; | |
14 int normid; | |
15 char *device; | |
16 char *driver; | |
17 int width; | |
18 int height; | |
19 int input; | |
20 int outfmt; | |
21 float fps; | |
22 char **channels; | |
23 int noaudio; | |
24 int immediate; | |
25 int audiorate; | |
26 int audio_id; | |
27 int amode; | |
28 int volume; | |
29 int bass; | |
30 int treble; | |
31 int balance; | |
32 int forcechan; | |
33 int force_audio; | |
34 int buffer_size; | |
35 int mjpeg; | |
36 int decimation; | |
37 int quality; | |
38 int alsa; | |
39 char* adevice; | |
40 int brightness; | |
41 int contrast; | |
42 int hue; | |
43 int saturation; | |
24553
d6bba2781d01
Implement setting gain control for video devices (usually webcams)
voroshil
parents:
24344
diff
changeset
|
44 int gain; |
23900 | 45 char *tdevice; ///< teletext device |
46 int tformat; ///< teletext display format | |
47 int tpage; ///< start teletext page | |
24290 | 48 int tlang; ///< primary language code |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
49 |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
50 int scan; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
51 int scan_threshold; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
52 float scan_period; |
24744 | 53 /** |
54 Terminate stream with video renderer instead of Null renderer | |
55 Will help if video freezes but audio does not. | |
56 May not work with -vo directx and -vf crop combination. | |
57 */ | |
58 int hidden_video_renderer; | |
59 /** | |
60 For VIVO cards VP pin have to be rendered too. | |
61 This tweak will cause VidePort pin stream to be terminated with video renderer | |
62 instead of removing it from graph. | |
63 Use if your card have vp pin and video is still choppy. | |
64 May not work with -vo directx and -vf crop combination. | |
65 */ | |
66 int hidden_vp_renderer; | |
67 /** | |
68 Use system clock as sync source instead of default graph clock (usually the clock | |
69 from one of live sources in graph. | |
70 */ | |
71 int system_clock; | |
72 /** | |
73 Some audio cards creates audio chunks with about 0.5 sec size. | |
74 This can cause choppy video when using mplayer with immediatemode=0 | |
75 Use followingtweak to decrease audio chunk sizes. | |
76 It will create audio chunks with time length equal to one video frame time. | |
77 */ | |
78 int normalize_audio_chunks; | |
23882 | 79 } tv_param_t; |
80 | |
81 extern tv_param_t stream_tv_defaults; | |
82 | |
2790 | 83 typedef struct tvi_info_s |
84 { | |
23883 | 85 struct tvi_handle_s * (*tvi_init)(tv_param_t* tv_param); |
2790 | 86 const char *name; |
87 const char *short_name; | |
88 const char *author; | |
89 const char *comment; | |
90 } tvi_info_t; | |
91 | |
92 typedef struct tvi_functions_s | |
93 { | |
94 int (*init)(); | |
2802 | 95 int (*uninit)(); |
2790 | 96 int (*control)(); |
2802 | 97 int (*start)(); |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
98 double (*grab_video_frame)(); |
2790 | 99 int (*get_video_framesize)(); |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
100 double (*grab_audio_frame)(); |
2790 | 101 int (*get_audio_framesize)(); |
102 } tvi_functions_t; | |
103 | |
104 typedef struct tvi_handle_s { | |
25684 | 105 const tvi_functions_t *functions; |
2802 | 106 void *priv; |
107 int seq; | |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
108 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
109 /* specific */ |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
110 int norm; |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
111 int chanlist; |
18032
de6740c3ab2a
10l: huge amount of constant crap in data segment
rfelker
parents:
17012
diff
changeset
|
112 const struct CHANLIST *chanlist_s; |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
113 int channel; |
23882 | 114 tv_param_t * tv_param; |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
115 void * scan; |
2790 | 116 } tvi_handle_t; |
117 | |
8627
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
118 typedef struct tv_channels_s { |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
119 int index; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
120 char number[5]; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
121 char name[20]; |
27025
e598c9756181
Ability for specifying TV standard individually for each TV channel.
voroshil
parents:
26029
diff
changeset
|
122 int norm; |
8627
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
123 int freq; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
124 struct tv_channels_s *next; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
125 struct tv_channels_s *prev; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
126 } tv_channels_t; |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
127 |
14607
7a80c6ac5058
several sets of headers declare global variables in them, which causes multiple definition errors with gcc 4.x
iive
parents:
13978
diff
changeset
|
128 extern tv_channels_t *tv_channel_list; |
7a80c6ac5058
several sets of headers declare global variables in them, which causes multiple definition errors with gcc 4.x
iive
parents:
13978
diff
changeset
|
129 extern tv_channels_t *tv_channel_current, *tv_channel_last; |
7a80c6ac5058
several sets of headers declare global variables in them, which causes multiple definition errors with gcc 4.x
iive
parents:
13978
diff
changeset
|
130 extern char *tv_channel_last_real; |
2802 | 131 |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
132 typedef struct { |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
133 unsigned int scan_timer; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
134 int channel_num; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
135 int new_channels; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
136 } tv_scan_t; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
137 |
2790 | 138 #define TVI_CONTROL_FALSE 0 |
139 #define TVI_CONTROL_TRUE 1 | |
140 #define TVI_CONTROL_NA -1 | |
141 #define TVI_CONTROL_UNKNOWN -2 | |
142 | |
2802 | 143 /* ======================== CONTROLS =========================== */ |
2790 | 144 |
2802 | 145 /* GENERIC controls */ |
146 #define TVI_CONTROL_IS_AUDIO 0x1 | |
147 #define TVI_CONTROL_IS_VIDEO 0x2 | |
148 #define TVI_CONTROL_IS_TUNER 0x3 | |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
149 #define TVI_CONTROL_IMMEDIATE 0x4 |
2802 | 150 |
151 /* VIDEO controls */ | |
152 #define TVI_CONTROL_VID_GET_FPS 0x101 | |
153 #define TVI_CONTROL_VID_GET_PLANES 0x102 | |
154 #define TVI_CONTROL_VID_GET_BITS 0x103 | |
155 #define TVI_CONTROL_VID_CHK_BITS 0x104 | |
156 #define TVI_CONTROL_VID_SET_BITS 0x105 | |
157 #define TVI_CONTROL_VID_GET_FORMAT 0x106 | |
158 #define TVI_CONTROL_VID_CHK_FORMAT 0x107 | |
159 #define TVI_CONTROL_VID_SET_FORMAT 0x108 | |
160 #define TVI_CONTROL_VID_GET_WIDTH 0x109 | |
161 #define TVI_CONTROL_VID_CHK_WIDTH 0x110 | |
162 #define TVI_CONTROL_VID_SET_WIDTH 0x111 | |
163 #define TVI_CONTROL_VID_GET_HEIGHT 0x112 | |
164 #define TVI_CONTROL_VID_CHK_HEIGHT 0x113 | |
165 #define TVI_CONTROL_VID_SET_HEIGHT 0x114 | |
2937 | 166 #define TVI_CONTROL_VID_GET_BRIGHTNESS 0x115 |
167 #define TVI_CONTROL_VID_SET_BRIGHTNESS 0x116 | |
168 #define TVI_CONTROL_VID_GET_HUE 0x117 | |
169 #define TVI_CONTROL_VID_SET_HUE 0x118 | |
170 #define TVI_CONTROL_VID_GET_SATURATION 0x119 | |
171 #define TVI_CONTROL_VID_SET_SATURATION 0x11a | |
172 #define TVI_CONTROL_VID_GET_CONTRAST 0x11b | |
173 #define TVI_CONTROL_VID_SET_CONTRAST 0x11c | |
174 #define TVI_CONTROL_VID_GET_PICTURE 0x11d | |
175 #define TVI_CONTROL_VID_SET_PICTURE 0x11e | |
24553
d6bba2781d01
Implement setting gain control for video devices (usually webcams)
voroshil
parents:
24344
diff
changeset
|
176 #define TVI_CONTROL_VID_SET_GAIN 0x11f |
d6bba2781d01
Implement setting gain control for video devices (usually webcams)
voroshil
parents:
24344
diff
changeset
|
177 #define TVI_CONTROL_VID_GET_GAIN 0x120 |
28940
7406e7f30d4e
Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents:
27025
diff
changeset
|
178 #define TVI_CONTROL_VID_SET_WIDTH_HEIGHT 0x121 |
2790 | 179 |
2802 | 180 /* TUNER controls */ |
181 #define TVI_CONTROL_TUN_GET_FREQ 0x201 | |
182 #define TVI_CONTROL_TUN_SET_FREQ 0x202 | |
183 #define TVI_CONTROL_TUN_GET_TUNER 0x203 /* update priv->tuner struct for used input */ | |
184 #define TVI_CONTROL_TUN_SET_TUNER 0x204 /* update priv->tuner struct for used input */ | |
185 #define TVI_CONTROL_TUN_GET_NORM 0x205 | |
186 #define TVI_CONTROL_TUN_SET_NORM 0x206 | |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
187 #define TVI_CONTROL_TUN_GET_SIGNAL 0x207 |
2802 | 188 |
189 /* AUDIO controls */ | |
190 #define TVI_CONTROL_AUD_GET_FORMAT 0x301 | |
191 #define TVI_CONTROL_AUD_GET_SAMPLERATE 0x302 | |
192 #define TVI_CONTROL_AUD_GET_SAMPLESIZE 0x303 | |
193 #define TVI_CONTROL_AUD_GET_CHANNELS 0x304 | |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
194 #define TVI_CONTROL_AUD_SET_SAMPLERATE 0x305 |
2802 | 195 |
196 /* SPECIFIC controls */ | |
197 #define TVI_CONTROL_SPC_GET_INPUT 0x401 /* set input channel (tv,s-video,composite..) */ | |
198 #define TVI_CONTROL_SPC_SET_INPUT 0x402 /* set input channel (tv,s-video,composite..) */ | |
13978 | 199 #define TVI_CONTROL_SPC_GET_NORMID 0x403 /* get normid from norm name */ |
2802 | 200 |
23900 | 201 //tvi_* ioctl (not tvi_vbi.c !!!) |
202 #define TVI_CONTROL_VBI_INIT 0x501 ///< vbi init | |
203 | |
204 /* | |
205 TELETEXT controls (through tv_teletext_control() ) | |
206 NOTE: | |
207 _SET_ should be _GET_ +1 | |
208 _STEP_ should be _GET_ +2 | |
209 */ | |
210 #define TV_VBI_CONTROL_GET_MODE 0x510 ///< get current mode teletext | |
211 #define TV_VBI_CONTROL_SET_MODE 0x511 ///< on/off grab teletext | |
212 | |
213 #define TV_VBI_CONTROL_GET_PAGE 0x513 ///< get grabbed teletext page | |
214 #define TV_VBI_CONTROL_SET_PAGE 0x514 ///< set grab teletext page number | |
215 #define TV_VBI_CONTROL_STEP_PAGE 0x515 ///< step grab teletext page number | |
216 | |
217 #define TV_VBI_CONTROL_GET_SUBPAGE 0x516 ///< get grabbed teletext page | |
218 #define TV_VBI_CONTROL_SET_SUBPAGE 0x517 ///< set grab teletext page number | |
219 | |
220 #define TV_VBI_CONTROL_GET_FORMAT 0x519 ///< get eletext format | |
221 #define TV_VBI_CONTROL_SET_FORMAT 0x51a ///< set teletext format | |
222 | |
223 #define TV_VBI_CONTROL_GET_HALF_PAGE 0x51c ///< get current half page | |
224 #define TV_VBI_CONTROL_SET_HALF_PAGE 0x51d ///< switch half page | |
225 | |
24342
8873c972c6aa
Decrease teletext page rendering frequency from 1/frame to about 4/sec.
voroshil
parents:
24292
diff
changeset
|
226 #define TV_VBI_CONTROL_IS_CHANGED 0x540 ///< teletext page is changed |
8873c972c6aa
Decrease teletext page rendering frequency from 1/frame to about 4/sec.
voroshil
parents:
24292
diff
changeset
|
227 #define TV_VBI_CONTROL_MARK_UNCHANGED 0x541 ///< teletext page is changed |
8873c972c6aa
Decrease teletext page rendering frequency from 1/frame to about 4/sec.
voroshil
parents:
24292
diff
changeset
|
228 |
23900 | 229 #define TV_VBI_CONTROL_ADD_DEC 0x550 ///< add page number with dec |
230 #define TV_VBI_CONTROL_GO_LINK 0x551 ///< go link (1..6) NYI | |
231 #define TV_VBI_CONTROL_GET_VBIPAGE 0x552 ///< get vbi_image for grabbed teletext page | |
232 #define TV_VBI_CONTROL_RESET 0x553 ///< vbi reset | |
233 #define TV_VBI_CONTROL_START 0x554 ///< vbi start | |
234 #define TV_VBI_CONTROL_STOP 0x555 ///< vbi stop | |
235 #define TV_VBI_CONTROL_DECODE_PAGE 0x556 ///< decode vbi page | |
24232
d0290b80e612
Implement 8/30 format 1 teletext packet decoding
voroshil
parents:
24183
diff
changeset
|
236 #define TV_VBI_CONTROL_GET_NETWORKNAME 0x557 ///< get current network name |
23900 | 237 |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
238 int tv_set_color_options(tvi_handle_t *tvh, int opt, int val); |
18172
90b62d7c0fca
Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents:
18032
diff
changeset
|
239 int tv_get_color_options(tvi_handle_t *tvh, int opt, int* val); |
2937 | 240 #define TV_COLOR_BRIGHTNESS 1 |
241 #define TV_COLOR_HUE 2 | |
242 #define TV_COLOR_SATURATION 3 | |
243 #define TV_COLOR_CONTRAST 4 | |
244 | |
8627
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
245 int tv_step_channel_real(tvi_handle_t *tvh, int direction); |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
246 int tv_step_channel(tvi_handle_t *tvh, int direction); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
247 #define TV_CHANNEL_LOWER 1 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
248 #define TV_CHANNEL_HIGHER 2 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
249 |
8627
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
250 int tv_last_channel(tvi_handle_t *tvh); |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
251 |
14ab71b47a58
user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents:
8494
diff
changeset
|
252 int tv_set_channel_real(tvi_handle_t *tvh, char *channel); |
8494 | 253 int tv_set_channel(tvi_handle_t *tvh, char *channel); |
254 | |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
255 int tv_step_norm(tvi_handle_t *tvh); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
256 int tv_step_chanlist(tvi_handle_t *tvh); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
257 |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
9663
diff
changeset
|
258 int tv_set_freq(tvi_handle_t *tvh, unsigned long freq); |
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
9663
diff
changeset
|
259 int tv_get_freq(tvi_handle_t *tvh, unsigned long *freq); |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
260 int tv_get_signal(tvi_handle_t *tvh); |
22667 | 261 int tv_step_freq(tvi_handle_t *tvh, float step_interval); |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
9663
diff
changeset
|
262 |
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
9663
diff
changeset
|
263 int tv_set_norm(tvi_handle_t *tvh, char* norm); |
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
9663
diff
changeset
|
264 |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
265 void tv_start_scan(tvi_handle_t *tvh, int start); |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
24034
diff
changeset
|
266 |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
267 #define TV_NORM_PAL 1 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
268 #define TV_NORM_NTSC 2 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
269 #define TV_NORM_SECAM 3 |
8477 | 270 #define TV_NORM_PALNC 4 |
271 #define TV_NORM_PALM 5 | |
272 #define TV_NORM_PALN 6 | |
273 #define TV_NORM_NTSCJP 7 | |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
274 |
23900 | 275 #define VBI_TFORMAT_TEXT 0 ///< text mode |
276 #define VBI_TFORMAT_BW 1 ///< back&white mode | |
277 #define VBI_TFORMAT_GRAY 2 ///< grayscale mode | |
278 #define VBI_TFORMAT_COLOR 3 ///< color mode (require color_spu patch!) | |
279 | |
280 #define VBI_MAX_PAGES 0x800 ///< max sub pages number | |
281 #define VBI_MAX_SUBPAGES 64 ///< max sub pages number | |
282 | |
24183
820df52200db
Enable decoding of packet X/24, it is usual teletext line
voroshil
parents:
24105
diff
changeset
|
283 #define VBI_ROWS 25 ///< teletext page height in rows |
820df52200db
Enable decoding of packet X/24, it is usual teletext line
voroshil
parents:
24105
diff
changeset
|
284 #define VBI_COLUMNS 40 ///< teletext page width in chars |
23900 | 285 #define VBI_TIME_LINEPOS 26 ///< time line pos in page header |
286 | |
287 typedef | |
288 enum{ | |
289 TT_FORMAT_OPAQUE=0, ///< opaque | |
290 TT_FORMAT_TRANSPARENT, ///< translarent | |
291 TT_FORMAT_OPAQUE_INV, ///< opaque with inverted colors | |
292 TT_FORMAT_TRANSPARENT_INV ///< translarent with inverted colors | |
293 } teletext_format; | |
294 | |
295 typedef | |
296 enum{ | |
297 TT_ZOOM_NORMAL=0, | |
298 TT_ZOOM_TOP_HALF, | |
299 TT_ZOOM_BOTTOM_HALF | |
300 } teletext_zoom; | |
301 | |
302 typedef struct tt_char_s{ | |
303 unsigned int unicode; ///< unicode (utf8) character | |
304 unsigned char fg; ///< foreground color | |
305 unsigned char bg; ///< background color | |
306 unsigned char gfx; ///< 0-no gfx, 1-solid gfx, 2-separated gfx | |
24292
ca146808e926
Proper support for flashing chars in teletext pages.
voroshil
parents:
24290
diff
changeset
|
307 unsigned char flh; ///< 0-no flash, 1-flash |
24344 | 308 unsigned char hidden; ///< char is hidden (for subtitle pages) |
23900 | 309 unsigned char ctl; ///< control character |
24290 | 310 unsigned char lng; ///< lang: 0-secondary language,1-primary language |
23900 | 311 unsigned char raw; ///< raw character (as received from device) |
312 } tt_char; | |
313 | |
24244 | 314 typedef struct tt_link_s{ |
315 int pagenum; ///< page number | |
316 int subpagenum; ///< subpage number | |
317 } tt_link_t; | |
318 | |
23900 | 319 typedef struct tt_page_s{ |
320 int pagenum; ///< page number | |
321 int subpagenum; ///< subpage number | |
24290 | 322 unsigned char primary_lang; ///< primary language code |
323 unsigned char secondary_lang; ///< secondary language code | |
23900 | 324 unsigned char active; ///< page is complete and ready for rendering |
24344 | 325 unsigned char flags; ///< page flags |
23900 | 326 unsigned char raw[VBI_ROWS*VBI_COLUMNS]; ///< page data |
327 struct tt_page_s* next_subpage; | |
24244 | 328 struct tt_link_s links[6]; |
23900 | 329 } tt_page; |
330 | |
24344 | 331 #define TT_PGFL_SUPPRESS_HEADER 0x01 |
332 #define TT_PGFL_UPDATE_INDICATOR 0x02 | |
333 #define TT_PGFL_INTERRUPTED_SEQ 0x04 | |
334 #define TT_PGFL_INHIBIT_DISPLAY 0x08 | |
335 #define TT_PGFL_NEWFLASH 0x10 | |
336 #define TT_PGFL_SUBTITLE 0x20 | |
337 #define TT_PGFL_ERASE_PAGE 0x40 | |
338 #define TT_PGFL_MAGAZINE_SERIAL 0x80 | |
339 | |
23900 | 340 typedef struct tt_stream_props_s{ |
341 int sampling_rate; | |
342 int samples_per_line; | |
343 int offset; | |
344 int count[2]; ///< number of lines in first and second fields | |
345 int interlaced; ///< vbi data are interlaced | |
346 int bufsize; ///< required buffer size | |
347 } tt_stream_props; | |
348 | |
26029 | 349 #endif /* MPLAYER_TV_H */ |