2 * TV Interface for MPlayer
4 * API idea based on libvo2
6 * Copyright (C) 2001 Alex Beregszaszi
8 * Feb 19, 2002: Significant rewrites by Charles R. Henrich (henrich@msu.edu)
9 * to add support for audio, and bktr *BSD support.
11 * This file is part of MPlayer.
13 * MPlayer is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * MPlayer is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
41 #include "libmpdemux/demuxer.h"
42 #include "libmpdemux/stheader.h"
44 #include "libaf/af_format.h"
45 #include "libmpcodecs/img_format.h"
46 #include "libmpcodecs/dec_teletext.h"
47 #include "libavutil/avstring.h"
48 #include "osdep/timer.h"
52 #include "frequencies.h"
54 tv_channels_t
*tv_channel_list
;
55 tv_channels_t
*tv_channel_current
, *tv_channel_last
;
56 char *tv_channel_last_real
;
58 /* enumerating drivers (like in stream.c) */
59 extern const tvi_info_t tvi_info_dummy
;
60 extern const tvi_info_t tvi_info_dshow
;
61 extern const tvi_info_t tvi_info_v4l
;
62 extern const tvi_info_t tvi_info_v4l2
;
63 extern const tvi_info_t tvi_info_bsdbt848
;
65 /** List of drivers in autodetection order */
66 static const tvi_info_t
* tvi_driver_list
[]={
73 #ifdef CONFIG_TV_BSDBT848
76 #ifdef CONFIG_TV_DSHOW
83 tvi_handle_t
*tv_new_handle(int size
, const tvi_functions_t
*functions
)
85 tvi_handle_t
*h
= malloc(sizeof(*h
));
90 h
->priv
= calloc(1, size
);
97 h
->functions
= functions
;
100 h
->chanlist_s
= NULL
;
108 void tv_free_handle(tvi_handle_t
*h
)
117 void tv_start_scan(tvi_handle_t
*tvh
, int start
)
119 mp_msg(MSGT_TV
,MSGL_INFO
,"start scan\n");
120 tvh
->tv_param
->scan
=start
?1:0;
123 static void tv_scan(tvi_handle_t
*tvh
)
127 tv_channels_t
*tv_channel_tmp
=NULL
;
128 tv_channels_t
*tv_channel_add
=NULL
;
130 int found
=0, index
=1;
132 //Channel scanner without tuner is useless and causes crash due to uninitialized chanlist_s
133 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_IS_TUNER
, 0) != TVI_CONTROL_TRUE
)
135 mp_tmsg(MSGT_TV
, MSGL_WARN
, "Channel scanner is not available without tuner\n");
136 tvh
->tv_param
->scan
=0;
143 scan
=calloc(1,sizeof(tv_scan_t
));
145 cl
= tvh
->chanlist_s
[scan
->channel_num
];
146 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
147 scan
->scan_timer
=now
+1e6
*tvh
->tv_param
->scan_period
;
149 if(scan
->scan_timer
>now
)
152 if (tv_get_signal(tvh
)>tvh
->tv_param
->scan_threshold
) {
153 cl
= tvh
->chanlist_s
[scan
->channel_num
];
154 tv_channel_tmp
=tv_channel_list
;
155 while (tv_channel_tmp
) {
157 if (cl
.freq
==tv_channel_tmp
->freq
){
161 tv_channel_add
=tv_channel_tmp
;
162 tv_channel_tmp
=tv_channel_tmp
->next
;
165 mp_msg(MSGT_TV
, MSGL_INFO
, "Found new channel: %s (#%d). \n",cl
.name
,index
);
166 scan
->new_channels
++;
167 tv_channel_tmp
= malloc(sizeof(tv_channels_t
));
168 tv_channel_tmp
->index
=index
;
169 tv_channel_tmp
->next
=NULL
;
170 tv_channel_tmp
->prev
=tv_channel_add
;
171 tv_channel_tmp
->freq
=cl
.freq
;
172 snprintf(tv_channel_tmp
->name
,sizeof(tv_channel_tmp
->name
),"ch%d",index
);
173 strncpy(tv_channel_tmp
->number
, cl
.name
, 5);
174 tv_channel_tmp
->number
[4]='\0';
175 if (!tv_channel_list
)
176 tv_channel_list
=tv_channel_tmp
;
178 tv_channel_add
->next
=tv_channel_tmp
;
179 tv_channel_list
->prev
=tv_channel_tmp
;
182 mp_msg(MSGT_TV
, MSGL_INFO
, "Found existing channel: %s-%s.\n",
183 tv_channel_tmp
->number
,tv_channel_tmp
->name
);
186 scan
->scan_timer
=now
+1e6
*tvh
->tv_param
->scan_period
;
187 if (scan
->channel_num
>=chanlists
[tvh
->chanlist
].count
) {
188 tvh
->tv_param
->scan
=0;
189 mp_msg(MSGT_TV
, MSGL_INFO
, "TV scan end. Found %d new channels.\n", scan
->new_channels
);
190 tv_channel_tmp
=tv_channel_list
;
192 mp_msg(MSGT_TV
,MSGL_INFO
,"channels=");
193 while(tv_channel_tmp
){
194 mp_msg(MSGT_TV
,MSGL_INFO
,"%s-%s",tv_channel_tmp
->number
,tv_channel_tmp
->name
);
195 if(tv_channel_tmp
->next
)
196 mp_msg(MSGT_TV
,MSGL_INFO
,",");
197 tv_channel_tmp
=tv_channel_tmp
->next
;
199 mp_msg(MSGT_TV
, MSGL_INFO
, "\n");
201 if (!tv_channel_current
) tv_channel_current
=tv_channel_list
;
202 if (tv_channel_current
)
203 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
207 cl
= tvh
->chanlist_s
[scan
->channel_num
];
208 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
209 mp_msg(MSGT_TV
, MSGL_INFO
, "Trying: %s (%.2f). \n",cl
.name
,1e-3*cl
.freq
);
213 /* ================== DEMUX_TV ===================== */
216 0 = EOF(?) or no stream
217 1 = successfully read a packet
219 /* fill demux->video and demux->audio */
221 static int demux_tv_fill_buffer(demuxer_t
*demux
, demux_stream_t
*ds
)
223 tvi_handle_t
*tvh
=(tvi_handle_t
*)(demux
->priv
);
227 /* ================== ADD AUDIO PACKET =================== */
229 if (ds
==demux
->audio
&& tvh
->tv_param
->noaudio
== 0 &&
230 tvh
->functions
->control(tvh
->priv
,
231 TVI_CONTROL_IS_AUDIO
, 0) == TVI_CONTROL_TRUE
)
233 len
= tvh
->functions
->get_audio_framesize(tvh
->priv
);
235 dp
=new_demux_packet(len
);
236 dp
->flags
|=1; /* Keyframe */
237 dp
->pts
=tvh
->functions
->grab_audio_frame(tvh
->priv
, dp
->buffer
,len
);
238 ds_add_packet(demux
->audio
,dp
);
241 /* ================== ADD VIDEO PACKET =================== */
243 if (ds
==demux
->video
&& tvh
->functions
->control(tvh
->priv
,
244 TVI_CONTROL_IS_VIDEO
, 0) == TVI_CONTROL_TRUE
)
246 len
= tvh
->functions
->get_video_framesize(tvh
->priv
);
247 dp
=new_demux_packet(len
);
248 dp
->flags
|=1; /* Keyframe */
249 dp
->pts
=tvh
->functions
->grab_video_frame(tvh
->priv
, dp
->buffer
, len
);
250 ds_add_packet(demux
->video
,dp
);
253 if (tvh
->tv_param
->scan
) tv_scan(tvh
);
257 static int norm_from_string(tvi_handle_t
*tvh
, char* norm
)
259 const tvi_functions_t
*funcs
= tvh
->functions
;
263 strncpy(str
, norm
, sizeof(str
)-1);
264 str
[sizeof(str
)-1] = '\0';
265 ret
=funcs
->control(tvh
->priv
, TVI_CONTROL_SPC_GET_NORMID
, str
);
267 if(ret
==TVI_CONTROL_TRUE
)
270 if(ret
!=TVI_CONTROL_UNKNOWN
)
272 mp_tmsg(MSGT_TV
, MSGL_WARN
, "tv.c: norm_from_string(%s): Bogus norm parameter, setting %s.\n", norm
,"default");
276 if (!strcasecmp(norm
, "pal"))
278 else if (!strcasecmp(norm
, "ntsc"))
280 else if (!strcasecmp(norm
, "secam"))
281 return TV_NORM_SECAM
;
282 else if (!strcasecmp(norm
, "palnc"))
283 return TV_NORM_PALNC
;
284 else if (!strcasecmp(norm
, "palm"))
286 else if (!strcasecmp(norm
, "paln"))
288 else if (!strcasecmp(norm
, "ntscjp"))
289 return TV_NORM_NTSCJP
;
291 mp_tmsg(MSGT_TV
, MSGL_WARN
, "tv.c: norm_from_string(%s): Bogus norm parameter, setting %s.\n", norm
, "PAL");
296 static void parse_channels(tvi_handle_t
*tvh
)
298 char** channels
= tvh
->tv_param
->channels
;
300 mp_tmsg(MSGT_TV
, MSGL_INFO
, "TV channel names detected.\n");
301 tv_channel_list
= malloc(sizeof(tv_channels_t
));
302 tv_channel_list
->index
=1;
303 tv_channel_list
->next
=NULL
;
304 tv_channel_list
->prev
=NULL
;
305 tv_channel_current
= tv_channel_list
;
306 tv_channel_current
->norm
= tvh
->norm
;
309 char* tmp
= *(channels
++);
310 char* sep
= strchr(tmp
,'-');
314 if (!sep
) continue; // Wrong syntax, but mplayer should not crash
316 av_strlcpy(tv_channel_current
->name
, sep
+ 1,
317 sizeof(tv_channel_current
->name
));
319 strncpy(tv_channel_current
->number
, tmp
, 5);
320 tv_channel_current
->number
[4]='\0';
322 while ((sep
=strchr(tv_channel_current
->name
, '_')))
325 // if channel number is a number and larger than 1000 threat it as frequency
326 // tmp still contain pointer to null-terminated string with channel number here
328 tv_channel_current
->freq
=atoi(tmp
);
330 tv_channel_current
->freq
= 0;
331 for (i
= 0; i
< chanlists
[tvh
->chanlist
].count
; i
++) {
332 cl
= tvh
->chanlist_s
[i
];
333 if (!strcasecmp(cl
.name
, tv_channel_current
->number
)) {
334 tv_channel_current
->freq
=cl
.freq
;
339 if (tv_channel_current
->freq
== 0)
340 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Couldn't find frequency for channel %s (%s)\n",
341 tv_channel_current
->number
, tv_channel_current
->name
);
343 sep
= strchr(tv_channel_current
->name
, '-');
344 if ( !sep
) sep
= strchr(tv_channel_current
->name
, '+');
348 if ( sep
[0] == '+' ) tv_channel_current
->freq
+= i
* 100;
349 if ( sep
[0] == '-' ) tv_channel_current
->freq
-= i
* 100;
353 sep
= strchr(tv_channel_current
->name
, '=');
355 tv_channel_current
->norm
= norm_from_string(tvh
, sep
+1);
360 /*mp_msg(MSGT_TV, MSGL_INFO, "-- Detected channel %s - %s (%5.3f)\n",
361 tv_channel_current->number, tv_channel_current->name,
362 (float)tv_channel_current->freq/1000);*/
364 tv_channel_current
->next
= malloc(sizeof(tv_channels_t
));
365 tv_channel_current
->next
->index
= tv_channel_current
->index
+ 1;
366 tv_channel_current
->next
->prev
= tv_channel_current
;
367 tv_channel_current
->next
->next
= NULL
;
368 tv_channel_current
= tv_channel_current
->next
;
369 tv_channel_current
->norm
= tvh
->norm
;
371 if (tv_channel_current
->prev
)
372 tv_channel_current
->prev
->next
= NULL
;
373 free(tv_channel_current
);
376 int tv_set_norm(tvi_handle_t
*tvh
, char* norm
)
378 tvh
->norm
= norm_from_string(tvh
, norm
);
380 mp_tmsg(MSGT_TV
, MSGL_V
, "Selected norm : %s\n", norm
);
381 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_NORM
, &tvh
->norm
) != TVI_CONTROL_TRUE
) {
382 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Error: Cannot set norm!\n");
385 teletext_control(tvh
->demuxer
->teletext
,TV_VBI_CONTROL_RESET
,
386 &tvh
->tv_param
->teletext
);
390 static int tv_set_norm_i(tvi_handle_t
*tvh
, int norm
)
394 mp_tmsg(MSGT_TV
, MSGL_V
, "Selected norm id: %d\n", norm
);
395 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_NORM
, &tvh
->norm
) != TVI_CONTROL_TRUE
) {
396 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Error: Cannot set norm!\n");
400 teletext_control(tvh
->demuxer
->teletext
,TV_VBI_CONTROL_RESET
,
401 &tvh
->tv_param
->teletext
);
405 static int open_tv(tvi_handle_t
*tvh
)
408 const tvi_functions_t
*funcs
= tvh
->functions
;
409 int tv_fmt_list
[] = {
420 if (funcs
->control(tvh
->priv
, TVI_CONTROL_IS_VIDEO
, 0) != TVI_CONTROL_TRUE
)
422 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Error: No video input present!\n");
426 if (tvh
->tv_param
->outfmt
== -1)
427 for (i
= 0; i
< sizeof (tv_fmt_list
) / sizeof (*tv_fmt_list
); i
++)
429 tvh
->tv_param
->outfmt
= tv_fmt_list
[i
];
430 if (funcs
->control (tvh
->priv
, TVI_CONTROL_VID_SET_FORMAT
,
431 &tvh
->tv_param
->outfmt
) == TVI_CONTROL_TRUE
)
436 switch(tvh
->tv_param
->outfmt
)
450 mp_tmsg(MSGT_TV
, MSGL_ERR
,
451 "==================================================================\n"\
452 " WARNING: UNTESTED OR UNKNOWN OUTPUT IMAGE FORMAT REQUESTED (0x%x)\n"\
453 " This may cause buggy playback or program crash! Bug reports will\n"\
454 " be ignored! You should try again with YV12 (which is the default\n"\
455 " colorspace) and read the documentation!\n"\
456 "==================================================================\n"
457 ,tvh
->tv_param
->outfmt
);
459 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_FORMAT
, &tvh
->tv_param
->outfmt
);
462 /* set some params got from cmdline */
463 funcs
->control(tvh
->priv
, TVI_CONTROL_SPC_SET_INPUT
, &tvh
->tv_param
->input
);
465 #if defined(CONFIG_TV_V4L2) || defined(CONFIG_TV_DSHOW)
467 #ifdef CONFIG_TV_V4L2
468 || (!strcmp(tvh
->tv_param
->driver
, "v4l2") && tvh
->tv_param
->normid
>= 0)
470 #ifdef CONFIG_TV_DSHOW
471 || (!strcmp(tvh
->tv_param
->driver
, "dshow") && tvh
->tv_param
->normid
>= 0)
474 tv_set_norm_i(tvh
, tvh
->tv_param
->normid
);
477 tv_set_norm(tvh
,tvh
->tv_param
->norm
);
479 #ifdef CONFIG_TV_V4L1
480 if ( tvh
->tv_param
->mjpeg
)
482 /* set width to expected value */
483 if (tvh
->tv_param
->width
== -1)
485 tvh
->tv_param
->width
= 704/tvh
->tv_param
->decimation
;
487 if (tvh
->tv_param
->height
== -1)
489 if ( tvh
->norm
!= TV_NORM_NTSC
)
490 tvh
->tv_param
->height
= 576/tvh
->tv_param
->decimation
;
492 tvh
->tv_param
->height
= 480/tvh
->tv_param
->decimation
;
494 mp_tmsg(MSGT_TV
, MSGL_INFO
,
495 " MJP: width %d height %d\n", tvh
->tv_param
->width
, tvh
->tv_param
->height
);
499 /* limits on w&h are norm-dependent -- JM */
500 if (tvh
->tv_param
->width
!= -1 && tvh
->tv_param
->height
!= -1) {
501 // first tell the driver both width and height, some drivers do not support setting them independently.
503 dim
[0] = tvh
->tv_param
->width
; dim
[1] = tvh
->tv_param
->height
;
504 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_WIDTH_HEIGHT
, dim
);
507 if (tvh
->tv_param
->width
!= -1)
509 if (funcs
->control(tvh
->priv
, TVI_CONTROL_VID_CHK_WIDTH
, &tvh
->tv_param
->width
) == TVI_CONTROL_TRUE
)
510 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_WIDTH
, &tvh
->tv_param
->width
);
513 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Unable to set requested width: %d\n", tvh
->tv_param
->width
);
514 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_WIDTH
, &tvh
->tv_param
->width
);
519 if (tvh
->tv_param
->height
!= -1)
521 if (funcs
->control(tvh
->priv
, TVI_CONTROL_VID_CHK_HEIGHT
, &tvh
->tv_param
->height
) == TVI_CONTROL_TRUE
)
522 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_HEIGHT
, &tvh
->tv_param
->height
);
525 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Unable to set requested height: %d\n", tvh
->tv_param
->height
);
526 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_HEIGHT
, &tvh
->tv_param
->height
);
530 if (funcs
->control(tvh
->priv
, TVI_CONTROL_IS_TUNER
, 0) != TVI_CONTROL_TRUE
)
532 mp_tmsg(MSGT_TV
, MSGL_WARN
, "Selected input hasn't got a tuner!\n");
536 /* select channel list */
537 for (i
= 0; chanlists
[i
].name
!= NULL
; i
++)
539 if (!strcasecmp(chanlists
[i
].name
, tvh
->tv_param
->chanlist
))
542 tvh
->chanlist_s
= chanlists
[i
].list
;
547 if (tvh
->chanlist
== -1)
548 mp_tmsg(MSGT_TV
, MSGL_WARN
, "Unable to find selected channel list! (%s)\n",
549 tvh
->tv_param
->chanlist
);
551 mp_tmsg(MSGT_TV
, MSGL_V
, "Selected channel list: %s (including %d channels)\n",
552 chanlists
[tvh
->chanlist
].name
, chanlists
[tvh
->chanlist
].count
);
554 if (tvh
->tv_param
->freq
&& tvh
->tv_param
->channel
)
556 mp_tmsg(MSGT_TV
, MSGL_WARN
, "You can't set frequency and channel simultaneously!\n");
560 /* Handle channel names */
561 if (tvh
->tv_param
->channels
) {
564 tv_channel_last_real
= malloc(5);
566 if (tv_channel_list
) {
569 if (tvh
->tv_param
->channel
)
571 if (isdigit(*tvh
->tv_param
->channel
))
572 /* if tvh->tv_param->channel begins with a digit interpret it as a number */
573 channel
= atoi(tvh
->tv_param
->channel
);
576 /* if tvh->tv_param->channel does not begin with a digit
577 set the first channel that contains tvh->tv_param->channel in its name */
579 tv_channel_current
= tv_channel_list
;
580 while ( tv_channel_current
) {
581 if ( strstr(tv_channel_current
->name
, tvh
->tv_param
->channel
) )
583 tv_channel_current
= tv_channel_current
->next
;
585 if ( !tv_channel_current
) tv_channel_current
= tv_channel_list
;
592 tv_channel_current
= tv_channel_list
;
593 for (i
= 1; i
< channel
; i
++)
594 if (tv_channel_current
->next
)
595 tv_channel_current
= tv_channel_current
->next
;
598 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s - %s (freq: %.3f)\n", tv_channel_current
->number
,
599 tv_channel_current
->name
, (float)tv_channel_current
->freq
/1000);
600 tv_set_norm_i(tvh
, tv_channel_current
->norm
);
601 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
602 tv_channel_last
= tv_channel_current
;
604 /* we need to set frequency */
605 if (tvh
->tv_param
->freq
)
607 unsigned long freq
= atof(tvh
->tv_param
->freq
)*16;
609 /* set freq in MHz */
610 funcs
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_FREQ
, &freq
);
612 funcs
->control(tvh
->priv
, TVI_CONTROL_TUN_GET_FREQ
, &freq
);
613 mp_tmsg(MSGT_TV
, MSGL_V
, "Selected frequency: %lu (%.3f)\n",
614 freq
, (float)freq
/16);
617 if (tvh
->tv_param
->channel
) {
620 mp_tmsg(MSGT_TV
, MSGL_V
, "Requested channel: %s\n", tvh
->tv_param
->channel
);
621 for (i
= 0; i
< chanlists
[tvh
->chanlist
].count
; i
++)
623 cl
= tvh
->chanlist_s
[i
];
624 // printf("count%d: name: %s, freq: %d\n",
625 // i, cl.name, cl.freq);
626 if (!strcasecmp(cl
.name
, tvh
->tv_param
->channel
))
628 strcpy(tv_channel_last_real
, cl
.name
);
630 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s (freq: %.3f)\n",
631 cl
.name
, (float)cl
.freq
/1000);
632 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
639 /* grep frequency in chanlist */
644 tv_get_freq(tvh
, &i2
);
646 freq
= (int) (((float)(i2
/16))*1000)+250;
648 for (i
= 0; i
< chanlists
[tvh
->chanlist
].count
; i
++)
650 if (tvh
->chanlist_s
[i
].freq
== freq
)
659 /* also start device! */
663 static tvi_handle_t
*tv_begin(tv_param_t
* tv_param
)
667 if(tv_param
->driver
&& !strcmp(tv_param
->driver
,"help")){
668 mp_tmsg(MSGT_TV
,MSGL_INFO
,"Available drivers:\n");
669 for(i
=0;tvi_driver_list
[i
];i
++){
670 mp_msg(MSGT_TV
,MSGL_INFO
," %s\t%s",tvi_driver_list
[i
]->short_name
,tvi_driver_list
[i
]->name
);
671 if(tvi_driver_list
[i
]->comment
)
672 mp_msg(MSGT_TV
,MSGL_INFO
," (%s)",tvi_driver_list
[i
]->comment
);
673 mp_msg(MSGT_TV
,MSGL_INFO
,"\n");
678 for(i
=0;tvi_driver_list
[i
];i
++){
679 if (!tv_param
->driver
|| !strcmp(tvi_driver_list
[i
]->short_name
, tv_param
->driver
)){
680 h
=tvi_driver_list
[i
]->tvi_init(tv_param
);
681 //Requested driver initialization failed
682 if (!h
&& tv_param
->driver
)
684 //Driver initialization failed during autodetection process.
688 h
->tv_param
=tv_param
;
689 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected driver: %s\n name: %s\n author: %s\n comment: %s\n", tvi_driver_list
[i
]->short_name
,
690 tvi_driver_list
[i
]->name
,
691 tvi_driver_list
[i
]->author
,
692 tvi_driver_list
[i
]->comment
?tvi_driver_list
[i
]->comment
:"");
693 tv_param
->driver
=strdup(tvi_driver_list
[i
]->short_name
);
699 mp_tmsg(MSGT_TV
, MSGL_ERR
, "No such driver: %s\n", tv_param
->driver
);
701 mp_tmsg(MSGT_TV
, MSGL_ERR
, "TV driver autodetection failed.\n");
705 static int tv_uninit(tvi_handle_t
*tvh
)
709 if (!tvh
->priv
) return 1;
710 res
=tvh
->functions
->uninit(tvh
->priv
);
718 static demuxer_t
* demux_open_tv(demuxer_t
*demuxer
)
721 sh_video_t
*sh_video
;
722 sh_audio_t
*sh_audio
= NULL
;
723 const tvi_functions_t
*funcs
;
726 if(!(tvh
=tv_begin(demuxer
->stream
->priv
))) return NULL
;
727 if (!tvh
->functions
->init(tvh
->priv
)) return NULL
;
729 tvh
->demuxer
= demuxer
;
730 tvh
->functions
->control(tvh
->priv
,TVI_CONTROL_VBI_INIT
,
731 &(tvh
->tv_param
->teletext
.device
));
732 tvh
->functions
->control(tvh
->priv
,TVI_CONTROL_GET_VBI_PTR
,
739 funcs
= tvh
->functions
;
742 sh_video
= new_sh_video(demuxer
, 0);
744 /* get IMAGE FORMAT */
745 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_FORMAT
, &sh_video
->format
);
746 // if (IMGFMT_IS_RGB(sh_video->format) || IMGFMT_IS_BGR(sh_video->format))
747 // sh_video->format = 0x0;
749 /* set FPS and FRAMETIME */
754 if (funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_FPS
, &tmp
) != TVI_CONTROL_TRUE
)
755 sh_video
->fps
= 25.0f
; /* on PAL */
756 else sh_video
->fps
= tmp
;
759 if (tvh
->tv_param
->fps
!= -1.0f
)
760 sh_video
->fps
= tvh
->tv_param
->fps
;
762 sh_video
->frametime
= 1.0f
/sh_video
->fps
;
764 /* If playback only mode, go to immediate mode, fail silently */
765 if(tvh
->tv_param
->immediate
== 1)
767 funcs
->control(tvh
->priv
, TVI_CONTROL_IMMEDIATE
, 0);
768 tvh
->tv_param
->noaudio
= 1;
771 /* disable TV audio if -nosound is present */
772 if (!demuxer
->audio
|| demuxer
->audio
->id
== -2) {
773 tvh
->tv_param
->noaudio
= 1;
777 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_WIDTH
, &sh_video
->disp_w
);
780 funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_HEIGHT
, &sh_video
->disp_h
);
782 demuxer
->video
->sh
= sh_video
;
783 sh_video
->ds
= demuxer
->video
;
784 demuxer
->video
->id
= 0;
785 demuxer
->seekable
= 0;
787 /* here comes audio init */
788 if (tvh
->tv_param
->noaudio
== 0 && funcs
->control(tvh
->priv
, TVI_CONTROL_IS_AUDIO
, 0) == TVI_CONTROL_TRUE
)
794 /* yeah, audio is present */
796 funcs
->control(tvh
->priv
, TVI_CONTROL_AUD_SET_SAMPLERATE
,
797 &tvh
->tv_param
->audiorate
);
799 if (funcs
->control(tvh
->priv
, TVI_CONTROL_AUD_GET_FORMAT
, &audio_format
) != TVI_CONTROL_TRUE
)
806 case AF_FORMAT_U16_LE
:
807 case AF_FORMAT_U16_BE
:
808 case AF_FORMAT_S16_LE
:
809 case AF_FORMAT_S16_BE
:
810 case AF_FORMAT_S32_LE
:
811 case AF_FORMAT_S32_BE
:
812 sh_audio_format
= 0x1; /* PCM */
814 case AF_FORMAT_IMA_ADPCM
:
815 case AF_FORMAT_MU_LAW
:
816 case AF_FORMAT_A_LAW
:
817 case AF_FORMAT_MPEG2
:
819 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Audio type '%s (%x)' unsupported!\n",
820 af_fmt2str(audio_format
, buf
, 128), audio_format
);
824 sh_audio
= new_sh_audio(demuxer
, 0);
826 funcs
->control(tvh
->priv
, TVI_CONTROL_AUD_GET_SAMPLERATE
,
827 &sh_audio
->samplerate
);
828 funcs
->control(tvh
->priv
, TVI_CONTROL_AUD_GET_SAMPLESIZE
,
829 &sh_audio
->samplesize
);
830 funcs
->control(tvh
->priv
, TVI_CONTROL_AUD_GET_CHANNELS
,
831 &sh_audio
->channels
);
833 sh_audio
->format
= sh_audio_format
;
834 sh_audio
->sample_format
= audio_format
;
836 sh_audio
->i_bps
= sh_audio
->o_bps
=
837 sh_audio
->samplerate
* sh_audio
->samplesize
*
840 // emulate WF for win32 codecs:
841 sh_audio
->wf
= malloc(sizeof(*sh_audio
->wf
));
842 sh_audio
->wf
->wFormatTag
= sh_audio
->format
;
843 sh_audio
->wf
->nChannels
= sh_audio
->channels
;
844 sh_audio
->wf
->wBitsPerSample
= sh_audio
->samplesize
* 8;
845 sh_audio
->wf
->nSamplesPerSec
= sh_audio
->samplerate
;
846 sh_audio
->wf
->nBlockAlign
= sh_audio
->samplesize
* sh_audio
->channels
;
847 sh_audio
->wf
->nAvgBytesPerSec
= sh_audio
->i_bps
;
849 mp_tmsg(MSGT_DECVIDEO
, MSGL_V
, " TV audio: %d channels, %d bits, %d Hz\n",
850 sh_audio
->wf
->nChannels
, sh_audio
->wf
->wBitsPerSample
,
851 sh_audio
->wf
->nSamplesPerSec
);
853 demuxer
->audio
->sh
= sh_audio
;
854 sh_audio
->ds
= demuxer
->audio
;
855 demuxer
->audio
->id
= 0;
859 if(!(funcs
->start(tvh
->priv
))){
866 tv_set_color_options(tvh
, TV_COLOR_BRIGHTNESS
, tvh
->tv_param
->brightness
);
867 tv_set_color_options(tvh
, TV_COLOR_HUE
, tvh
->tv_param
->hue
);
868 tv_set_color_options(tvh
, TV_COLOR_SATURATION
, tvh
->tv_param
->saturation
);
869 tv_set_color_options(tvh
, TV_COLOR_CONTRAST
, tvh
->tv_param
->contrast
);
871 if(tvh
->tv_param
->gain
!=-1)
872 if(funcs
->control(tvh
->priv
,TVI_CONTROL_VID_SET_GAIN
,&tvh
->tv_param
->gain
)!=TVI_CONTROL_TRUE
)
873 mp_msg(MSGT_TV
,MSGL_WARN
,"Unable to set gain control!\n");
875 teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_RESET
,
876 &tvh
->tv_param
->teletext
);
881 static void demux_close_tv(demuxer_t
*demuxer
)
883 tvi_handle_t
*tvh
=(tvi_handle_t
*)(demuxer
->priv
);
888 demuxer
->teletext
=NULL
;
891 int tv_set_color_options(tvi_handle_t
*tvh
, int opt
, int value
)
893 const tvi_functions_t
*funcs
= tvh
->functions
;
897 case TV_COLOR_BRIGHTNESS
:
898 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_BRIGHTNESS
, &value
);
900 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_HUE
, &value
);
901 case TV_COLOR_SATURATION
:
902 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_SATURATION
, &value
);
903 case TV_COLOR_CONTRAST
:
904 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_SET_CONTRAST
, &value
);
906 mp_tmsg(MSGT_TV
, MSGL_WARN
, "Unknown color option (%d) specified!\n", opt
);
909 return TVI_CONTROL_UNKNOWN
;
912 int tv_get_color_options(tvi_handle_t
*tvh
, int opt
, int* value
)
914 const tvi_functions_t
*funcs
= tvh
->functions
;
918 case TV_COLOR_BRIGHTNESS
:
919 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_BRIGHTNESS
, value
);
921 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_HUE
, value
);
922 case TV_COLOR_SATURATION
:
923 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_SATURATION
, value
);
924 case TV_COLOR_CONTRAST
:
925 return funcs
->control(tvh
->priv
, TVI_CONTROL_VID_GET_CONTRAST
, value
);
927 mp_tmsg(MSGT_TV
, MSGL_WARN
, "Unknown color option (%d) specified!\n", opt
);
930 return TVI_CONTROL_UNKNOWN
;
933 int tv_get_freq(tvi_handle_t
*tvh
, unsigned long *freq
)
935 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_IS_TUNER
, 0) == TVI_CONTROL_TRUE
)
937 tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_GET_FREQ
, freq
);
938 mp_tmsg(MSGT_TV
, MSGL_V
, "Current frequency: %lu (%.3f)\n",
939 *freq
, (float)*freq
/16);
944 int tv_set_freq(tvi_handle_t
*tvh
, unsigned long freq
)
946 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_IS_TUNER
, 0) == TVI_CONTROL_TRUE
)
948 // unsigned long freq = atof(tvh->tv_param->freq)*16;
950 /* set freq in MHz */
951 tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_FREQ
, &freq
);
953 tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_GET_FREQ
, &freq
);
954 mp_tmsg(MSGT_TV
, MSGL_V
, "Current frequency: %lu (%.3f)\n",
955 freq
, (float)freq
/16);
957 teletext_control(tvh
->demuxer
->teletext
,TV_VBI_CONTROL_RESET
,
958 &tvh
->tv_param
->teletext
);
962 int tv_get_signal(tvi_handle_t
*tvh
)
965 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_IS_TUNER
, 0) != TVI_CONTROL_TRUE
||
966 tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_GET_SIGNAL
, &signal
)!=TVI_CONTROL_TRUE
)
972 /*****************************************************************
973 * \brief tune current frequency by step_interval value
974 * \parameter step_interval increment value in 1/16 MHz
975 * \note frequency is rounded to 1/16 MHz value
979 int tv_step_freq(tvi_handle_t
* tvh
, float step_interval
){
980 unsigned long frequency
;
982 tvh
->tv_param
->scan
=0;
983 tv_get_freq(tvh
,&frequency
);
984 frequency
+=step_interval
;
985 return tv_set_freq(tvh
,frequency
);
988 int tv_step_channel_real(tvi_handle_t
*tvh
, int direction
)
992 tvh
->tv_param
->scan
=0;
993 if (direction
== TV_CHANNEL_LOWER
)
995 if (tvh
->channel
-1 >= 0)
997 strcpy(tv_channel_last_real
, tvh
->chanlist_s
[tvh
->channel
].name
);
998 cl
= tvh
->chanlist_s
[--tvh
->channel
];
999 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s (freq: %.3f)\n",
1000 cl
.name
, (float)cl
.freq
/1000);
1001 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
1005 if (direction
== TV_CHANNEL_HIGHER
)
1007 if (tvh
->channel
+1 < chanlists
[tvh
->chanlist
].count
)
1009 strcpy(tv_channel_last_real
, tvh
->chanlist_s
[tvh
->channel
].name
);
1010 cl
= tvh
->chanlist_s
[++tvh
->channel
];
1011 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s (freq: %.3f)\n",
1012 cl
.name
, (float)cl
.freq
/1000);
1013 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
1019 int tv_step_channel(tvi_handle_t
*tvh
, int direction
) {
1020 tvh
->tv_param
->scan
=0;
1021 if (tv_channel_list
) {
1022 if (direction
== TV_CHANNEL_HIGHER
) {
1023 tv_channel_last
= tv_channel_current
;
1024 if (tv_channel_current
->next
)
1025 tv_channel_current
= tv_channel_current
->next
;
1027 tv_channel_current
= tv_channel_list
;
1029 tv_set_norm_i(tvh
, tv_channel_current
->norm
);
1030 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
1031 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s - %s (freq: %.3f)\n",
1032 tv_channel_current
->number
, tv_channel_current
->name
, (float)tv_channel_current
->freq
/1000);
1034 if (direction
== TV_CHANNEL_LOWER
) {
1035 tv_channel_last
= tv_channel_current
;
1036 if (tv_channel_current
->prev
)
1037 tv_channel_current
= tv_channel_current
->prev
;
1039 while (tv_channel_current
->next
)
1040 tv_channel_current
= tv_channel_current
->next
;
1041 tv_set_norm_i(tvh
, tv_channel_current
->norm
);
1042 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
1043 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s - %s (freq: %.3f)\n",
1044 tv_channel_current
->number
, tv_channel_current
->name
, (float)tv_channel_current
->freq
/1000);
1046 } else tv_step_channel_real(tvh
, direction
);
1050 int tv_set_channel_real(tvi_handle_t
*tvh
, char *channel
) {
1054 tvh
->tv_param
->scan
=0;
1055 strcpy(tv_channel_last_real
, tvh
->chanlist_s
[tvh
->channel
].name
);
1056 for (i
= 0; i
< chanlists
[tvh
->chanlist
].count
; i
++)
1058 cl
= tvh
->chanlist_s
[i
];
1059 // printf("count%d: name: %s, freq: %d\n",
1060 // i, cl.name, cl.freq);
1061 if (!strcasecmp(cl
.name
, channel
))
1064 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s (freq: %.3f)\n",
1065 cl
.name
, (float)cl
.freq
/1000);
1066 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
1073 int tv_set_channel(tvi_handle_t
*tvh
, char *channel
) {
1076 tvh
->tv_param
->scan
=0;
1077 if (tv_channel_list
) {
1078 tv_channel_last
= tv_channel_current
;
1079 channel_int
= atoi(channel
);
1080 tv_channel_current
= tv_channel_list
;
1081 for (i
= 1; i
< channel_int
; i
++)
1082 if (tv_channel_current
->next
)
1083 tv_channel_current
= tv_channel_current
->next
;
1084 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s - %s (freq: %.3f)\n", tv_channel_current
->number
,
1085 tv_channel_current
->name
, (float)tv_channel_current
->freq
/1000);
1086 tv_set_norm_i(tvh
, tv_channel_current
->norm
);
1087 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
1088 } else tv_set_channel_real(tvh
, channel
);
1092 int tv_last_channel(tvi_handle_t
*tvh
) {
1094 tvh
->tv_param
->scan
=0;
1095 if (tv_channel_list
) {
1098 tmp
= tv_channel_last
;
1099 tv_channel_last
= tv_channel_current
;
1100 tv_channel_current
= tmp
;
1102 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s - %s (freq: %.3f)\n", tv_channel_current
->number
,
1103 tv_channel_current
->name
, (float)tv_channel_current
->freq
/1000);
1104 tv_set_norm_i(tvh
, tv_channel_current
->norm
);
1105 tv_set_freq(tvh
, (unsigned long)(((float)tv_channel_current
->freq
/1000)*16));
1110 for (i
= 0; i
< chanlists
[tvh
->chanlist
].count
; i
++)
1112 cl
= tvh
->chanlist_s
[i
];
1113 if (!strcasecmp(cl
.name
, tv_channel_last_real
))
1115 strcpy(tv_channel_last_real
, tvh
->chanlist_s
[tvh
->channel
].name
);
1117 mp_tmsg(MSGT_TV
, MSGL_INFO
, "Selected channel: %s (freq: %.3f)\n",
1118 cl
.name
, (float)cl
.freq
/1000);
1119 tv_set_freq(tvh
, (unsigned long)(((float)cl
.freq
/1000)*16));
1127 int tv_step_norm(tvi_handle_t
*tvh
)
1130 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_NORM
,
1131 &tvh
->norm
) != TVI_CONTROL_TRUE
) {
1133 if (tvh
->functions
->control(tvh
->priv
, TVI_CONTROL_TUN_SET_NORM
,
1134 &tvh
->norm
) != TVI_CONTROL_TRUE
) {
1135 mp_tmsg(MSGT_TV
, MSGL_ERR
, "Error: Cannot set norm!\n");
1139 teletext_control(tvh
->demuxer
->teletext
,TV_VBI_CONTROL_RESET
,
1140 &tvh
->tv_param
->teletext
);
1144 int tv_step_chanlist(tvi_handle_t
*tvh
)
1149 demuxer_desc_t demuxer_desc_tv
= {
1153 "Alex Beregszaszi, Charles R. Henrich",
1158 demux_tv_fill_buffer
,