annotate stream/tv.c @ 32090:535ebcd085e4

Move TV input free_handle static function to tv.c and make it non-static. There is no need to pointlessly duplicate the function in the binary.
author diego
date Sat, 11 Sep 2010 23:53:15 +0000
parents d8408f8f996b
children c08363dc5320
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1 /*
30426
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
2 * TV Interface for MPlayer
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
3 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
4 * API idea based on libvo2
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
5 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
6 * Copyright (C) 2001 Alex Beregszaszi
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
7 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
8 * Feb 19, 2002: Significant rewrites by Charles R. Henrich (henrich@msu.edu)
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
9 * to add support for audio, and bktr *BSD support.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
10 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
11 * This file is part of MPlayer.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
12 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
13 * MPlayer is free software; you can redistribute it and/or modify
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
14 * it under the terms of the GNU General Public License as published by
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
15 * the Free Software Foundation; either version 2 of the License, or
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
16 * (at your option) any later version.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
17 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
18 * MPlayer is distributed in the hope that it will be useful,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
21 * GNU General Public License for more details.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
22 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
23 * You should have received a copy of the GNU General Public License along
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
24 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30241
diff changeset
26 */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
27
98769cea155c added tv subsystem
alex
parents:
diff changeset
28 #include <stdio.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
29 #include <stdlib.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
30 #include <unistd.h>
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
31 #include <string.h>
10242
4e34d468f549 warning fixes by Dominik
alex
parents: 10019
diff changeset
32 #include <ctype.h>
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
33 #include <sys/time.h>
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
34
98769cea155c added tv subsystem
alex
parents:
diff changeset
35 #include "config.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
36
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
37
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
38 #include "mp_msg.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
39 #include "help_mp.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
40
98769cea155c added tv subsystem
alex
parents:
diff changeset
41 #include "stream.h"
19312
ab8d6b6deb63 proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents: 19271
diff changeset
42 #include "libmpdemux/demuxer.h"
ab8d6b6deb63 proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents: 19271
diff changeset
43 #include "libmpdemux/stheader.h"
2830
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
44
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16961
diff changeset
45 #include "libaf/af_format.h"
19431
ac69ba536915 Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents: 19312
diff changeset
46 #include "libmpcodecs/img_format.h"
29759
d287e2785570 Move teletext specific code from stream into libmpcodecs.
cehoyos
parents: 29717
diff changeset
47 #include "libmpcodecs/dec_teletext.h"
23703
9fb716ab06a3 Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents: 23573
diff changeset
48 #include "libavutil/avstring.h"
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
49 #include "osdep/timer.h"
2830
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
50
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
51 #include "tv.h"
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
52
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
53 #include "frequencies.h"
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
54
14607
7a80c6ac5058 several sets of headers declare global variables in them, which causes multiple definition errors with gcc 4.x
iive
parents: 14255
diff changeset
55 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: 14255
diff changeset
56 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: 14255
diff changeset
57 char *tv_channel_last_real;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
58
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
59 /* enumerating drivers (like in stream.c) */
25689
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25688
diff changeset
60 extern const tvi_info_t tvi_info_dummy;
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25688
diff changeset
61 extern const tvi_info_t tvi_info_dshow;
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25688
diff changeset
62 extern const tvi_info_t tvi_info_v4l;
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25688
diff changeset
63 extern const tvi_info_t tvi_info_v4l2;
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25688
diff changeset
64 extern const tvi_info_t tvi_info_bsdbt848;
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
65
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
66 /** List of drivers in autodetection order */
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
67 static const tvi_info_t* tvi_driver_list[]={
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
68 #ifdef CONFIG_TV_V4L2
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
69 &tvi_info_v4l2,
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
70 #endif
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
71 #ifdef CONFIG_TV_V4L1
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
72 &tvi_info_v4l,
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
73 #endif
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
74 #ifdef CONFIG_TV_BSDBT848
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
75 &tvi_info_bsdbt848,
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
76 #endif
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
77 #ifdef CONFIG_TV_DSHOW
24744
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
78 &tvi_info_dshow,
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
79 #endif
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
80 &tvi_info_dummy,
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
81 NULL
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
82 };
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
83
32090
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
84 void tv_free_handle(tvi_handle_t *h)
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
85 {
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
86 if (h) {
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
87 if (h->priv)
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
88 free(h->priv);
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
89 if (h->scan)
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
90 free(h->scan);
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
91 free(h);
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
92 }
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
93 }
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31611
diff changeset
94
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
95 void tv_start_scan(tvi_handle_t *tvh, int start)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
96 {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
97 mp_msg(MSGT_TV,MSGL_INFO,"start scan\n");
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
98 tvh->tv_param->scan=start?1:0;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
99 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
100
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
101 static void tv_scan(tvi_handle_t *tvh)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
102 {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
103 unsigned int now;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
104 struct CHANLIST cl;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
105 tv_channels_t *tv_channel_tmp=NULL;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
106 tv_channels_t *tv_channel_add=NULL;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
107 tv_scan_t* scan;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
108 int found=0, index=1;
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
109
24762
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
110 //Channel scanner without tuner is useless and causes crash due to uninitialized chanlist_s
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
111 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) != TVI_CONTROL_TRUE)
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
112 {
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
113 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_ScannerNotAvailableWithoutTuner);
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
114 tvh->tv_param->scan=0;
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
115 return;
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
116 }
1ed81edfac75 Disable channel scanner when no tuner is present.
voroshil
parents: 24754
diff changeset
117
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
118 scan = tvh->scan;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
119 now=GetTimer();
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
120 if (!scan) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
121 scan=calloc(1,sizeof(tv_scan_t));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
122 tvh->scan=scan;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
123 cl = tvh->chanlist_s[scan->channel_num];
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
124 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
125 scan->scan_timer=now+1e6*tvh->tv_param->scan_period;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
126 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
127 if(scan->scan_timer>now)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
128 return;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
129
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
130 if (tv_get_signal(tvh)>tvh->tv_param->scan_threshold) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
131 cl = tvh->chanlist_s[scan->channel_num];
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
132 tv_channel_tmp=tv_channel_list;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
133 while (tv_channel_tmp) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
134 index++;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
135 if (cl.freq==tv_channel_tmp->freq){
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
136 found=1;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
137 break;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
138 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
139 tv_channel_add=tv_channel_tmp;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
140 tv_channel_tmp=tv_channel_tmp->next;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
141 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
142 if (!found) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
143 mp_msg(MSGT_TV, MSGL_INFO, "Found new channel: %s (#%d). \n",cl.name,index);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
144 scan->new_channels++;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
145 tv_channel_tmp = malloc(sizeof(tv_channels_t));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
146 tv_channel_tmp->index=index;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
147 tv_channel_tmp->next=NULL;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
148 tv_channel_tmp->prev=tv_channel_add;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
149 tv_channel_tmp->freq=cl.freq;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
150 snprintf(tv_channel_tmp->name,sizeof(tv_channel_tmp->name),"ch%d",index);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
151 strncpy(tv_channel_tmp->number, cl.name, 5);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
152 tv_channel_tmp->number[4]='\0';
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
153 if (!tv_channel_list)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
154 tv_channel_list=tv_channel_tmp;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
155 else {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
156 tv_channel_add->next=tv_channel_tmp;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
157 tv_channel_list->prev=tv_channel_tmp;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
158 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
159 }else
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
160 mp_msg(MSGT_TV, MSGL_INFO, "Found existing channel: %s-%s.\n",
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
161 tv_channel_tmp->number,tv_channel_tmp->name);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
162 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
163 scan->channel_num++;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
164 scan->scan_timer=now+1e6*tvh->tv_param->scan_period;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
165 if (scan->channel_num>=chanlists[tvh->chanlist].count) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
166 tvh->tv_param->scan=0;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
167 mp_msg(MSGT_TV, MSGL_INFO, "TV scan end. Found %d new channels.\n", scan->new_channels);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
168 tv_channel_tmp=tv_channel_list;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
169 if(tv_channel_tmp){
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
170 mp_msg(MSGT_TV,MSGL_INFO,"channels=");
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
171 while(tv_channel_tmp){
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
172 mp_msg(MSGT_TV,MSGL_INFO,"%s-%s",tv_channel_tmp->number,tv_channel_tmp->name);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
173 if(tv_channel_tmp->next)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
174 mp_msg(MSGT_TV,MSGL_INFO,",");
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
175 tv_channel_tmp=tv_channel_tmp->next;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
176 }
25138
d624c8409e8b Add missing '\n' in tv scanner results output.
voroshil
parents: 24944
diff changeset
177 mp_msg(MSGT_TV, MSGL_INFO, "\n");
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
178 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
179 if (!tv_channel_current) tv_channel_current=tv_channel_list;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
180 if (tv_channel_current)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
181 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
182 free(tvh->scan);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
183 tvh->scan=NULL;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
184 }else{
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
185 cl = tvh->chanlist_s[scan->channel_num];
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
186 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
187 mp_msg(MSGT_TV, MSGL_INFO, "Trying: %s (%.2f). \n",cl.name,1e-3*cl.freq);
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
188 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
189 }
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
190
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
191 /* ================== DEMUX_TV ===================== */
98769cea155c added tv subsystem
alex
parents:
diff changeset
192 /*
98769cea155c added tv subsystem
alex
parents:
diff changeset
193 Return value:
98769cea155c added tv subsystem
alex
parents:
diff changeset
194 0 = EOF(?) or no stream
98769cea155c added tv subsystem
alex
parents:
diff changeset
195 1 = successfully read a packet
98769cea155c added tv subsystem
alex
parents:
diff changeset
196 */
98769cea155c added tv subsystem
alex
parents:
diff changeset
197 /* fill demux->video and demux->audio */
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
198
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
199 static int demux_tv_fill_buffer(demuxer_t *demux, demux_stream_t *ds)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
200 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
201 tvi_handle_t *tvh=(tvi_handle_t*)(demux->priv);
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
202 demux_packet_t* dp;
9927
ea1274e658b4 mingw fix
faust3
parents: 9889
diff changeset
203 unsigned int len=0;
22969
c8ace3e97d73 cosmetics. restore empty line removed in r22985.
voroshil
parents: 22967
diff changeset
204
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
205 /* ================== ADD AUDIO PACKET =================== */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
206
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
207 if (ds==demux->audio && tvh->tv_param->noaudio == 0 &&
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
208 tvh->functions->control(tvh->priv,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
209 TVI_CONTROL_IS_AUDIO, 0) == TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
210 {
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
211 len = tvh->functions->get_audio_framesize(tvh->priv);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
212
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
213 dp=new_demux_packet(len);
12034
90315c910b26 Raw audio and video are always keyframes
ranma
parents: 11986
diff changeset
214 dp->flags|=1; /* Keyframe */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
215 dp->pts=tvh->functions->grab_audio_frame(tvh->priv, dp->buffer,len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
216 ds_add_packet(demux->audio,dp);
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
217 }
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
218
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
219 /* ================== ADD VIDEO PACKET =================== */
98769cea155c added tv subsystem
alex
parents:
diff changeset
220
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
221 if (ds==demux->video && tvh->functions->control(tvh->priv,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
222 TVI_CONTROL_IS_VIDEO, 0) == TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
223 {
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
224 len = tvh->functions->get_video_framesize(tvh->priv);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
225 dp=new_demux_packet(len);
12034
90315c910b26 Raw audio and video are always keyframes
ranma
parents: 11986
diff changeset
226 dp->flags|=1; /* Keyframe */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
227 dp->pts=tvh->functions->grab_video_frame(tvh->priv, dp->buffer, len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
228 ds_add_packet(demux->video,dp);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
229 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
230
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
231 if (tvh->tv_param->scan) tv_scan(tvh);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
232 return 1;
98769cea155c added tv subsystem
alex
parents:
diff changeset
233 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
234
13978
2a9afbfc79d7 setting the norm using text ID instead of numeric
henry
parents: 12034
diff changeset
235 static int norm_from_string(tvi_handle_t *tvh, char* norm)
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
236 {
25688
cd4af70b12ef Make some tvi_functions_t pointers const that I forgot to change before
reimar
parents: 25687
diff changeset
237 const tvi_functions_t *funcs = tvh->functions;
24753
0dca70b5337b 8 bytes buffer is not enough for at least SECAM-DK.
voroshil
parents: 24752
diff changeset
238 char str[20];
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
239 int ret;
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
240
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
241 strncpy(str, norm, sizeof(str)-1);
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
242 str[sizeof(str)-1] = '\0';
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
243 ret=funcs->control(tvh->priv, TVI_CONTROL_SPC_GET_NORMID, str);
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
244
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
245 if(ret==TVI_CONTROL_TRUE)
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
246 return *(int *)str;
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
247
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
248 if(ret!=TVI_CONTROL_UNKNOWN)
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
249 {
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
250 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_BogusNormParameter, norm,"default");
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
251 return 0;
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
252 }
24749
00ad4fc92af3 Remove driver-dependent #ifdef from norm_from_string routine.
voroshil
parents: 24748
diff changeset
253
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
254 if (!strcasecmp(norm, "pal"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
255 return TV_NORM_PAL;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
256 else if (!strcasecmp(norm, "ntsc"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
257 return TV_NORM_NTSC;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
258 else if (!strcasecmp(norm, "secam"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
259 return TV_NORM_SECAM;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
260 else if (!strcasecmp(norm, "palnc"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
261 return TV_NORM_PALNC;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
262 else if (!strcasecmp(norm, "palm"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
263 return TV_NORM_PALM;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
264 else if (!strcasecmp(norm, "paln"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
265 return TV_NORM_PALN;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
266 else if (!strcasecmp(norm, "ntscjp"))
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
267 return TV_NORM_NTSCJP;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
268 else {
24750
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
269 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_BogusNormParameter, norm, "PAL");
af0540caadd1 (cosmetics) indentation fix of my previous commit and small readability
voroshil
parents: 24749
diff changeset
270 return TV_NORM_PAL;
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
271 }
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
272 }
8123
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7905
diff changeset
273
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
274 static void parse_channels(tvi_handle_t *tvh)
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
275 {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
276 char** channels = tvh->tv_param->channels;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
277
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
278 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_ChannelNamesDetected);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
279 tv_channel_list = malloc(sizeof(tv_channels_t));
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
280 tv_channel_list->index=1;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
281 tv_channel_list->next=NULL;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
282 tv_channel_list->prev=NULL;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
283 tv_channel_current = tv_channel_list;
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
284 tv_channel_current->norm = tvh->norm;
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
285
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
286 while (*channels) {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
287 char* tmp = *(channels++);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
288 char* sep = strchr(tmp,'-');
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
289 int i;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
290 struct CHANLIST cl;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
291
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
292 if (!sep) continue; // Wrong syntax, but mplayer should not crash
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
293
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
294 av_strlcpy(tv_channel_current->name, sep + 1,
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
295 sizeof(tv_channel_current->name));
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
296 sep[0] = '\0';
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
297 strncpy(tv_channel_current->number, tmp, 5);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
298 tv_channel_current->number[4]='\0';
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
299
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
300 while ((sep=strchr(tv_channel_current->name, '_')))
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
301 sep[0] = ' ';
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
302
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
303 // if channel number is a number and larger than 1000 threat it as frequency
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
304 // tmp still contain pointer to null-terminated string with channel number here
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
305 if (atoi(tmp)>1000){
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
306 tv_channel_current->freq=atoi(tmp);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
307 }else{
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
308 tv_channel_current->freq = 0;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
309 for (i = 0; i < chanlists[tvh->chanlist].count; i++) {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
310 cl = tvh->chanlist_s[i];
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
311 if (!strcasecmp(cl.name, tv_channel_current->number)) {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
312 tv_channel_current->freq=cl.freq;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
313 break;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
314 }
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
315 }
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
316 }
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
317 if (tv_channel_current->freq == 0)
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
318 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_NoFreqForChannel,
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
319 tv_channel_current->number, tv_channel_current->name);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
320 else {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
321 sep = strchr(tv_channel_current->name, '-');
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
322 if ( !sep ) sep = strchr(tv_channel_current->name, '+');
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
323
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
324 if ( sep ) {
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
325 i = atoi (sep+1);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
326 if ( sep[0] == '+' ) tv_channel_current->freq += i * 100;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
327 if ( sep[0] == '-' ) tv_channel_current->freq -= i * 100;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
328 sep[0] = '\0';
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
329 }
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
330
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
331 sep = strchr(tv_channel_current->name, '=');
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
332 if ( sep ) {
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
333 tv_channel_current->norm = norm_from_string(tvh, sep+1);
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
334 sep[0] = '\0';
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
335 }
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
336 }
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
337
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
338 /*mp_msg(MSGT_TV, MSGL_INFO, "-- Detected channel %s - %s (%5.3f)\n",
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
339 tv_channel_current->number, tv_channel_current->name,
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
340 (float)tv_channel_current->freq/1000);*/
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
341
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
342 tv_channel_current->next = malloc(sizeof(tv_channels_t));
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
343 tv_channel_current->next->index = tv_channel_current->index + 1;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
344 tv_channel_current->next->prev = tv_channel_current;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
345 tv_channel_current->next->next = NULL;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
346 tv_channel_current = tv_channel_current->next;
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
347 tv_channel_current->norm = tvh->norm;
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
348 }
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
349 if (tv_channel_current->prev)
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
350 tv_channel_current->prev->next = NULL;
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
351 free(tv_channel_current);
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
352 }
27067
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
353
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
354 int tv_set_norm(tvi_handle_t *tvh, char* norm)
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
355 {
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
356 tvh->norm = norm_from_string(tvh, norm);
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
357
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
358 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_SelectedNorm, norm);
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
359 if (tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_NORM, &tvh->norm) != TVI_CONTROL_TRUE) {
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
360 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_CannotSetNorm);
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
361 return 0;
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
362 }
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
363 teletext_control(tvh->demuxer->teletext,TV_VBI_CONTROL_RESET,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
364 &tvh->tv_param->teletext);
27067
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
365 return 1;
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
366 }
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
367
30557
74a6c2a3dcce stream: Mark functions not used outside of their files as static.
diego
parents: 30426
diff changeset
368 static int tv_set_norm_i(tvi_handle_t *tvh, int norm)
27067
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
369 {
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
370 tvh->norm = norm;
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
371
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
372 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_SelectedNormId, norm);
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
373 if (tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_NORM, &tvh->norm) != TVI_CONTROL_TRUE) {
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
374 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_CannotSetNorm);
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
375 return 0;
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
376 }
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
377
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
378 teletext_control(tvh->demuxer->teletext,TV_VBI_CONTROL_RESET,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
379 &tvh->tv_param->teletext);
29717
afc8b80eb027 cosmetics: Remove some pointless parentheses from return calls.
diego
parents: 29263
diff changeset
380 return 1;
27067
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
381 }
833ec0c12cb9 Reorder some functions to avoid implicit declaration warnings.
diego
parents: 27025
diff changeset
382
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
383 static int open_tv(tvi_handle_t *tvh)
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
384 {
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
385 int i;
25688
cd4af70b12ef Make some tvi_functions_t pointers const that I forgot to change before
reimar
parents: 25687
diff changeset
386 const tvi_functions_t *funcs = tvh->functions;
17862
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
387 int tv_fmt_list[] = {
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
388 IMGFMT_YV12,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
389 IMGFMT_I420,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
390 IMGFMT_UYVY,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
391 IMGFMT_YUY2,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
392 IMGFMT_RGB32,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
393 IMGFMT_RGB24,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
394 IMGFMT_RGB16,
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
395 IMGFMT_RGB15
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
396 };
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
397
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
398 if (funcs->control(tvh->priv, TVI_CONTROL_IS_VIDEO, 0) != TVI_CONTROL_TRUE)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
399 {
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
400 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_NoVideoInputPresent);
3728
499ce786c30d As nobody fixed this yet:
pl
parents: 3703
diff changeset
401 return 0;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
402 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
403
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
404 if (tvh->tv_param->outfmt == -1)
17862
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
405 for (i = 0; i < sizeof (tv_fmt_list) / sizeof (*tv_fmt_list); i++)
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
406 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
407 tvh->tv_param->outfmt = tv_fmt_list[i];
17862
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
408 if (funcs->control (tvh->priv, TVI_CONTROL_VID_SET_FORMAT,
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
409 &tvh->tv_param->outfmt) == TVI_CONTROL_TRUE)
17862
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
410 break;
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
411 }
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
412 else
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
413 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
414 switch(tvh->tv_param->outfmt)
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
415 {
10598
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
416 case IMGFMT_YV12:
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
417 case IMGFMT_I420:
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
418 case IMGFMT_UYVY:
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
419 case IMGFMT_YUY2:
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
420 case IMGFMT_RGB32:
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
421 case IMGFMT_RGB24:
15419
da39fe11c872 BGR formats are ok, too
henry
parents: 14607
diff changeset
422 case IMGFMT_BGR32:
da39fe11c872 BGR formats are ok, too
henry
parents: 14607
diff changeset
423 case IMGFMT_BGR24:
da39fe11c872 BGR formats are ok, too
henry
parents: 14607
diff changeset
424 case IMGFMT_BGR16:
da39fe11c872 BGR formats are ok, too
henry
parents: 14607
diff changeset
425 case IMGFMT_BGR15:
10598
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
426 break;
2b88c28a3cfe Settled to CONF_TYPE_IMGFMT which simplified lot of things. Now there's no need to add new img formats to the source, instead you can try it out by providing it in hexa format, and if it isn't supported by the card, you get a nice error message. That's all.
alex
parents: 10581
diff changeset
427 default:
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
428 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_UnknownImageFormat,tvh->tv_param->outfmt);
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
429 }
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
430 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_FORMAT, &tvh->tv_param->outfmt);
17862
ecb2023ee4b6 Try several formats instead of only YV12 if no format was explicitly
albeu
parents: 17174
diff changeset
431 }
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
432
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
433 /* set some params got from cmdline */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
434 funcs->control(tvh->priv, TVI_CONTROL_SPC_SET_INPUT, &tvh->tv_param->input);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
435
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
436 #if defined(CONFIG_TV_V4L2) || defined(CONFIG_TV_DSHOW)
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
437 if (0
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
438 #ifdef CONFIG_TV_V4L2
24744
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
439 || (!strcmp(tvh->tv_param->driver, "v4l2") && tvh->tv_param->normid >= 0)
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
440 #endif
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
441 #ifdef CONFIG_TV_DSHOW
24744
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
442 || (!strcmp(tvh->tv_param->driver, "dshow") && tvh->tv_param->normid >= 0)
d81eef9beb1b DirectShow based tv:// driver for win32
voroshil
parents: 24553
diff changeset
443 #endif
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
444 )
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
445 tv_set_norm_i(tvh, tvh->tv_param->normid);
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
446 else
10537
31f12f99118b v4l2 support
henry
parents: 10521
diff changeset
447 #endif
24752
21bddf1a7126 Replace duplicated code with call to routine
voroshil
parents: 24751
diff changeset
448 tv_set_norm(tvh,tvh->tv_param->norm);
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
449
27370
14c5017f40d2 Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents: 27067
diff changeset
450 #ifdef CONFIG_TV_V4L1
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
451 if ( tvh->tv_param->mjpeg )
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
452 {
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
453 /* set width to expected value */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
454 if (tvh->tv_param->width == -1)
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
455 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
456 tvh->tv_param->width = 704/tvh->tv_param->decimation;
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
457 }
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
458 if (tvh->tv_param->height == -1)
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
459 {
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
460 if ( tvh->norm != TV_NORM_NTSC )
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
461 tvh->tv_param->height = 576/tvh->tv_param->decimation;
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
462 else
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
463 tvh->tv_param->height = 480/tvh->tv_param->decimation;
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
464 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
465 mp_msg(MSGT_TV, MSGL_INFO,
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
466 MSGTR_TV_MJP_WidthHeight, tvh->tv_param->width, tvh->tv_param->height);
9620
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
467 }
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
468 #endif
ce4cd85498f3 hardware mjpeg encoding using v4l by Iv«¡n Sz«¡nt«Ñ <szivan@freemail.hu>
henry
parents: 9519
diff changeset
469
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
470 /* limits on w&h are norm-dependent -- JM */
28940
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
471 if (tvh->tv_param->width != -1 && tvh->tv_param->height != -1) {
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
472 // first tell the driver both width and height, some drivers do not support setting them independently.
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
473 int dim[2];
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
474 dim[0] = tvh->tv_param->width; dim[1] = tvh->tv_param->height;
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
475 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_WIDTH_HEIGHT, dim);
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 27370
diff changeset
476 }
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
477 /* set width */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
478 if (tvh->tv_param->width != -1)
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
479 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
480 if (funcs->control(tvh->priv, TVI_CONTROL_VID_CHK_WIDTH, &tvh->tv_param->width) == TVI_CONTROL_TRUE)
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
481 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_WIDTH, &tvh->tv_param->width);
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
482 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
483 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
484 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_UnableToSetWidth, tvh->tv_param->width);
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
485 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_WIDTH, &tvh->tv_param->width);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
486 }
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
487 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
488
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
489 /* set height */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
490 if (tvh->tv_param->height != -1)
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
491 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
492 if (funcs->control(tvh->priv, TVI_CONTROL_VID_CHK_HEIGHT, &tvh->tv_param->height) == TVI_CONTROL_TRUE)
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
493 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_HEIGHT, &tvh->tv_param->height);
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
494 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
495 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
496 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_UnableToSetHeight, tvh->tv_param->height);
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
497 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HEIGHT, &tvh->tv_param->height);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
498 }
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
499 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
500
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
501 if (funcs->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) != TVI_CONTROL_TRUE)
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
502 {
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
503 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_NoTuner);
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
504 goto done;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
505 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
506
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
507 /* select channel list */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
508 for (i = 0; chanlists[i].name != NULL; i++)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
509 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
510 if (!strcasecmp(chanlists[i].name, tvh->tv_param->chanlist))
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
511 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
512 tvh->chanlist = i;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
513 tvh->chanlist_s = chanlists[i].list;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
514 break;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
515 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
516 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
517
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
518 if (tvh->chanlist == -1)
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
519 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_UnableFindChanlist,
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
520 tvh->tv_param->chanlist);
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
521 else
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
522 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_SelectedChanlist,
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
523 chanlists[tvh->chanlist].name, chanlists[tvh->chanlist].count);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
524
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
525 if (tvh->tv_param->freq && tvh->tv_param->channel)
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
526 {
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
527 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_ChannelFreqParamConflict);
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
528 goto done;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
529 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
530
10771
2f213f786e41 spelling fixes
diego
parents: 10598
diff changeset
531 /* Handle channel names */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
532 if (tvh->tv_param->channels) {
24246
0a82a3b7ac46 Move channels option parsing code into separate routine.
voroshil
parents: 24105
diff changeset
533 parse_channels(tvh);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
534 } else
18366
d18fc000093d 100000l to the fools who don't know C
rfelker
parents: 18172
diff changeset
535 tv_channel_last_real = malloc(5);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
536
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
537 if (tv_channel_list) {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
538 int i;
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
539 int channel = 0;
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
540 if (tvh->tv_param->channel)
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
541 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
542 if (isdigit(*tvh->tv_param->channel))
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
543 /* if tvh->tv_param->channel begins with a digit interpret it as a number */
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
544 channel = atoi(tvh->tv_param->channel);
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
545 else
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
546 {
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
547 /* if tvh->tv_param->channel does not begin with a digit
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
548 set the first channel that contains tvh->tv_param->channel in its name */
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
549
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
550 tv_channel_current = tv_channel_list;
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
551 while ( tv_channel_current ) {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
552 if ( strstr(tv_channel_current->name, tvh->tv_param->channel) )
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
553 break;
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
554 tv_channel_current = tv_channel_current->next;
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
555 }
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
556 if ( !tv_channel_current ) tv_channel_current = tv_channel_list;
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
557 }
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
558 }
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
559 else
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
560 channel = 1;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
561
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
562 if ( channel ) {
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
563 tv_channel_current = tv_channel_list;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
564 for (i = 1; i < channel; i++)
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
565 if (tv_channel_current->next)
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
566 tv_channel_current = tv_channel_current->next;
10011
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
567 }
736ca83d609f abilty to set tv channel by name on commandline, patch by Ivan Szanto <szivan@duticai.TWI.TUDelft.NL>
alex
parents: 9927
diff changeset
568
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
569 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel3, tv_channel_current->number,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
570 tv_channel_current->name, (float)tv_channel_current->freq/1000);
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
571 tv_set_norm_i(tvh, tv_channel_current->norm);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
572 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
573 tv_channel_last = tv_channel_current;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
574 } else {
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
575 /* we need to set frequency */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
576 if (tvh->tv_param->freq)
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
577 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
578 unsigned long freq = atof(tvh->tv_param->freq)*16;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
579
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
580 /* set freq in MHz */
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
581 funcs->control(tvh->priv, TVI_CONTROL_TUN_SET_FREQ, &freq);
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
582
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
583 funcs->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
584 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_SelectedFrequency,
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
585 freq, (float)freq/16);
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
586 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
587
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
588 if (tvh->tv_param->channel) {
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
589 struct CHANLIST cl;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
590
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
591 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_RequestedChannel, tvh->tv_param->channel);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
592 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
593 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
594 cl = tvh->chanlist_s[i];
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
595 // printf("count%d: name: %s, freq: %d\n",
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
596 // i, cl.name, cl.freq);
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
597 if (!strcasecmp(cl.name, tvh->tv_param->channel))
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
598 {
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
599 strcpy(tv_channel_last_real, cl.name);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
600 tvh->channel = i;
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
601 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel2,
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
602 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
603 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
604 break;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
605 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
606 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
607 }
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
608 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
609
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
610 /* grep frequency in chanlist */
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
611 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
612 unsigned long i2;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
613 int freq;
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
614
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
615 tv_get_freq(tvh, &i2);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
616
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
617 freq = (int) (((float)(i2/16))*1000)+250;
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
618
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
619 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
620 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
621 if (tvh->chanlist_s[i].freq == freq)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
622 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
623 tvh->channel = i+1;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
624 break;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
625 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
626 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
627 }
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
628
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
629 done:
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
630 /* also start device! */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
631 return 1;
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
632 }
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
633
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23881
diff changeset
634 static tvi_handle_t *tv_begin(tv_param_t* tv_param)
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
635 {
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
636 int i;
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
637 tvi_handle_t* h;
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
638 if(tv_param->driver && !strcmp(tv_param->driver,"help")){
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
639 mp_msg(MSGT_TV,MSGL_INFO,MSGTR_TV_AvailableDrivers);
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
640 for(i=0;tvi_driver_list[i];i++){
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
641 mp_msg(MSGT_TV,MSGL_INFO," %s\t%s",tvi_driver_list[i]->short_name,tvi_driver_list[i]->name);
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
642 if(tvi_driver_list[i]->comment)
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
643 mp_msg(MSGT_TV,MSGL_INFO," (%s)",tvi_driver_list[i]->comment);
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
644 mp_msg(MSGT_TV,MSGL_INFO,"\n");
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
645 }
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
646 return NULL;
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
647 }
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
648
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
649 for(i=0;tvi_driver_list[i];i++){
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
650 if (!tv_param->driver || !strcmp(tvi_driver_list[i]->short_name, tv_param->driver)){
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23881
diff changeset
651 h=tvi_driver_list[i]->tvi_init(tv_param);
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
652 //Requested driver initialization failed
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
653 if (!h && tv_param->driver)
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
654 return NULL;
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
655 //Driver initialization failed during autodetection process.
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
656 if (!h)
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
657 continue;
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
658
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23881
diff changeset
659 h->tv_param=tv_param;
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
660 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_DriverInfo, tvi_driver_list[i]->short_name,
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
661 tvi_driver_list[i]->name,
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
662 tvi_driver_list[i]->author,
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
663 tvi_driver_list[i]->comment?tvi_driver_list[i]->comment:"");
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
664 tv_param->driver=strdup(tvi_driver_list[i]->short_name);
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
665 return h;
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
666 }
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
667 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
668
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
669 if(tv_param->driver)
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
670 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_NoSuchDriver, tv_param->driver);
24403
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
671 else
d31512f03462 Implementation of tv:// driver autodetection.
voroshil
parents: 24246
diff changeset
672 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_DriverAutoDetectionFailed);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
673 return NULL;
23879
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
674 }
26a32eda1603 Cosmetics: move two routines up
voroshil
parents: 23703
diff changeset
675
23881
5a5c7866921f Removing forward declarations of routines used only in tv.c
voroshil
parents: 23880
diff changeset
676 static int tv_uninit(tvi_handle_t *tvh)
23880
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
677 {
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
678 int res;
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
679 if(!tvh) return 1;
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
680 if (!tvh->priv) return 1;
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
681 res=tvh->functions->uninit(tvh->priv);
24943
1777d38d020d Fix segmentation fault after audio initialization failure in tv driver.
voroshil
parents: 24762
diff changeset
682 if(res) {
1777d38d020d Fix segmentation fault after audio initialization failure in tv driver.
voroshil
parents: 24762
diff changeset
683 free(tvh->priv);
1777d38d020d Fix segmentation fault after audio initialization failure in tv driver.
voroshil
parents: 24762
diff changeset
684 tvh->priv=NULL;
1777d38d020d Fix segmentation fault after audio initialization failure in tv driver.
voroshil
parents: 24762
diff changeset
685 }
23880
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
686 return res;
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
687 }
1c888cc4ebbb Cosmetics.
voroshil
parents: 23879
diff changeset
688
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
689 static demuxer_t* demux_open_tv(demuxer_t *demuxer)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
690 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
691 tvi_handle_t *tvh;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
692 sh_video_t *sh_video;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
693 sh_audio_t *sh_audio = NULL;
25688
cd4af70b12ef Make some tvi_functions_t pointers const that I forgot to change before
reimar
parents: 25687
diff changeset
694 const tvi_functions_t *funcs;
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
695
21837
922c0072a2bf Two crash issues fixed:
voroshil
parents: 19431
diff changeset
696 demuxer->priv=NULL;
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23881
diff changeset
697 if(!(tvh=tv_begin(demuxer->stream->priv))) return NULL;
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21837
diff changeset
698 if (!tvh->functions->init(tvh->priv)) return NULL;
23900
b5cc28c45d73 Teletext support.
voroshil
parents: 23889
diff changeset
699
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
700 tvh->demuxer = demuxer;
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
701 tvh->functions->control(tvh->priv,TVI_CONTROL_VBI_INIT,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
702 &(tvh->tv_param->teletext.device));
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
703 tvh->functions->control(tvh->priv,TVI_CONTROL_GET_VBI_PTR,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
704 &demuxer->teletext);
23900
b5cc28c45d73 Teletext support.
voroshil
parents: 23889
diff changeset
705
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
706 if (!open_tv(tvh)){
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
707 tv_uninit(tvh);
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
708 return NULL;
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
709 }
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
710 funcs = tvh->functions;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
711 demuxer->priv=tvh;
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
712
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
713 sh_video = new_sh_video(demuxer, 0);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
714
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
715 /* get IMAGE FORMAT */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
716 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FORMAT, &sh_video->format);
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
717 // if (IMGFMT_IS_RGB(sh_video->format) || IMGFMT_IS_BGR(sh_video->format))
3398
a73b02e35e70 give the IMGFMT_ for sh_video->format not 0x0
alex
parents: 3285
diff changeset
718 // sh_video->format = 0x0;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
719
09d5c9834580 tv update
alex
parents: 2790
diff changeset
720 /* set FPS and FRAMETIME */
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
721
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
722 if(!sh_video->fps)
98769cea155c added tv subsystem
alex
parents:
diff changeset
723 {
10019
0ea7b9c6c27f 1000000000l
rfelker
parents: 10011
diff changeset
724 float tmp;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
725 if (funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FPS, &tmp) != TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
726 sh_video->fps = 25.0f; /* on PAL */
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
727 else sh_video->fps = tmp;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
728 }
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
729
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
730 if (tvh->tv_param->fps != -1.0f)
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
731 sh_video->fps = tvh->tv_param->fps;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
732
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
733 sh_video->frametime = 1.0f/sh_video->fps;
98769cea155c added tv subsystem
alex
parents:
diff changeset
734
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
735 /* If playback only mode, go to immediate mode, fail silently */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
736 if(tvh->tv_param->immediate == 1)
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
737 {
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
738 funcs->control(tvh->priv, TVI_CONTROL_IMMEDIATE, 0);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
739 tvh->tv_param->noaudio = 1;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
740 }
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
741
8799
f08d507eb683 -nosound fix
henry
parents: 8627
diff changeset
742 /* disable TV audio if -nosound is present */
f08d507eb683 -nosound fix
henry
parents: 8627
diff changeset
743 if (!demuxer->audio || demuxer->audio->id == -2) {
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
744 tvh->tv_param->noaudio = 1;
8799
f08d507eb683 -nosound fix
henry
parents: 8627
diff changeset
745 }
f08d507eb683 -nosound fix
henry
parents: 8627
diff changeset
746
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
747 /* set width */
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
748 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_WIDTH, &sh_video->disp_w);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
749
98769cea155c added tv subsystem
alex
parents:
diff changeset
750 /* set height */
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
751 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HEIGHT, &sh_video->disp_h);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
752
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
753 demuxer->video->sh = sh_video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
754 sh_video->ds = demuxer->video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
755 demuxer->video->id = 0;
9501
d64c56172220 make tv non-seekable
henry
parents: 8955
diff changeset
756 demuxer->seekable = 0;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
757
98769cea155c added tv subsystem
alex
parents:
diff changeset
758 /* here comes audio init */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
759 if (tvh->tv_param->noaudio == 0 && funcs->control(tvh->priv, TVI_CONTROL_IS_AUDIO, 0) == TVI_CONTROL_TRUE)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
760 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
761 int audio_format;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
762 int sh_audio_format;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
763 char buf[128];
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
764
09d5c9834580 tv update
alex
parents: 2790
diff changeset
765 /* yeah, audio is present */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
766
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
767 funcs->control(tvh->priv, TVI_CONTROL_AUD_SET_SAMPLERATE,
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
768 &tvh->tv_param->audiorate);
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
769
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
770 if (funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_FORMAT, &audio_format) != TVI_CONTROL_TRUE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
771 goto no_audio;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
772
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
773 switch(audio_format)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
774 {
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
775 case AF_FORMAT_U8:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
776 case AF_FORMAT_S8:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
777 case AF_FORMAT_U16_LE:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
778 case AF_FORMAT_U16_BE:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
779 case AF_FORMAT_S16_LE:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
780 case AF_FORMAT_S16_BE:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
781 case AF_FORMAT_S32_LE:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
782 case AF_FORMAT_S32_BE:
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
783 sh_audio_format = 0x1; /* PCM */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
784 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
785 case AF_FORMAT_IMA_ADPCM:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
786 case AF_FORMAT_MU_LAW:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
787 case AF_FORMAT_A_LAW:
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 13978
diff changeset
788 case AF_FORMAT_MPEG2:
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
789 default:
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
790 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_UnsupportedAudioType,
14255
137896e25c24 100l, buf etc. in af_fmt2str call are already pointers...
reimar
parents: 14245
diff changeset
791 af_fmt2str(audio_format, buf, 128), audio_format);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
792 goto no_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
793 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
794
31611
d8408f8f996b Fix compilation of tv support.
reimar
parents: 30557
diff changeset
795 sh_audio = new_sh_audio(demuxer, 0, NULL);
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
796
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
797 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLERATE,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
798 &sh_audio->samplerate);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
799 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLESIZE,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
800 &sh_audio->samplesize);
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
801 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_CHANNELS,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
802 &sh_audio->channels);
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
803
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
804 sh_audio->format = sh_audio_format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
805 sh_audio->sample_format = audio_format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
806
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
807 sh_audio->i_bps = sh_audio->o_bps =
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
808 sh_audio->samplerate * sh_audio->samplesize *
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
809 sh_audio->channels;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
810
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
811 // emulate WF for win32 codecs:
19062
83c3afeab35d drops casts from void * on malloc/calloc from libmpdemux code
reynaldo
parents: 18922
diff changeset
812 sh_audio->wf = malloc(sizeof(WAVEFORMATEX));
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
813 sh_audio->wf->wFormatTag = sh_audio->format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
814 sh_audio->wf->nChannels = sh_audio->channels;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
815 sh_audio->wf->wBitsPerSample = sh_audio->samplesize * 8;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
816 sh_audio->wf->nSamplesPerSec = sh_audio->samplerate;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
817 sh_audio->wf->nBlockAlign = sh_audio->samplesize * sh_audio->channels;
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
818 sh_audio->wf->nAvgBytesPerSec = sh_audio->i_bps;
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
819
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
820 mp_msg(MSGT_DECVIDEO, MSGL_V, MSGTR_TV_AudioFormat,
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
821 sh_audio->wf->nChannels, sh_audio->wf->wBitsPerSample,
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
822 sh_audio->wf->nSamplesPerSec);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
823
09d5c9834580 tv update
alex
parents: 2790
diff changeset
824 demuxer->audio->sh = sh_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
825 sh_audio->ds = demuxer->audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
826 demuxer->audio->id = 0;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
827 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
828 no_audio:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
829
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
830 if(!(funcs->start(tvh->priv))){
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
831 // start failed :(
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
832 tv_uninit(tvh);
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
833 return NULL;
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
834 }
10581
4ebff25d9a05 From: Kir Kostuchenko <kir@users.sourceforge.net>
gabucino
parents: 10537
diff changeset
835
4ebff25d9a05 From: Kir Kostuchenko <kir@users.sourceforge.net>
gabucino
parents: 10537
diff changeset
836 /* set color eq */
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
837 tv_set_color_options(tvh, TV_COLOR_BRIGHTNESS, tvh->tv_param->brightness);
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
838 tv_set_color_options(tvh, TV_COLOR_HUE, tvh->tv_param->hue);
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
839 tv_set_color_options(tvh, TV_COLOR_SATURATION, tvh->tv_param->saturation);
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
840 tv_set_color_options(tvh, TV_COLOR_CONTRAST, tvh->tv_param->contrast);
10581
4ebff25d9a05 From: Kir Kostuchenko <kir@users.sourceforge.net>
gabucino
parents: 10537
diff changeset
841
24553
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24430
diff changeset
842 if(tvh->tv_param->gain!=-1)
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24430
diff changeset
843 if(funcs->control(tvh->priv,TVI_CONTROL_VID_SET_GAIN,&tvh->tv_param->gain)!=TVI_CONTROL_TRUE)
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24430
diff changeset
844 mp_msg(MSGT_TV,MSGL_WARN,"Unable to set gain control!\n");
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24430
diff changeset
845
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
846 teletext_control(demuxer->teletext,TV_VBI_CONTROL_RESET,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
847 &tvh->tv_param->teletext);
24430
85156c51f912 Fix missing reset/initialization (with tv parameters) of
voroshil
parents: 24403
diff changeset
848
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
849 return demuxer;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
850 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
851
17174
83a8c738be89 make demuxer seek and close functions return void, patch by Dominik Mierzejewski
wanderer
parents: 17012
diff changeset
852 static void demux_close_tv(demuxer_t *demuxer)
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
853 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
854 tvi_handle_t *tvh=(tvi_handle_t*)(demuxer->priv);
21837
922c0072a2bf Two crash issues fixed:
voroshil
parents: 19431
diff changeset
855 if (!tvh) return;
24943
1777d38d020d Fix segmentation fault after audio initialization failure in tv driver.
voroshil
parents: 24762
diff changeset
856 tv_uninit(tvh);
24944
975308353c33 Fix memory leak.
voroshil
parents: 24943
diff changeset
857 free(tvh);
21837
922c0072a2bf Two crash issues fixed:
voroshil
parents: 19431
diff changeset
858 demuxer->priv=NULL;
29831
8f20788b3610 Set demuxer->teletext to NULL when closing the TV interface,
reimar
parents: 29806
diff changeset
859 demuxer->teletext=NULL;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
860 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
861
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
862 /* utilities for mplayer (not mencoder!!) */
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
863 int tv_set_color_options(tvi_handle_t *tvh, int opt, int value)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
864 {
25688
cd4af70b12ef Make some tvi_functions_t pointers const that I forgot to change before
reimar
parents: 25687
diff changeset
865 const tvi_functions_t *funcs = tvh->functions;
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
866
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
867 switch(opt)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
868 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
869 case TV_COLOR_BRIGHTNESS:
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
870 return funcs->control(tvh->priv, TVI_CONTROL_VID_SET_BRIGHTNESS, &value);
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
871 case TV_COLOR_HUE:
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
872 return funcs->control(tvh->priv, TVI_CONTROL_VID_SET_HUE, &value);
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
873 case TV_COLOR_SATURATION:
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
874 return funcs->control(tvh->priv, TVI_CONTROL_VID_SET_SATURATION, &value);
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
875 case TV_COLOR_CONTRAST:
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
876 return funcs->control(tvh->priv, TVI_CONTROL_VID_SET_CONTRAST, &value);
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
877 default:
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
878 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_UnknownColorOption, opt);
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
879 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
880
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
881 return TVI_CONTROL_UNKNOWN;
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
882 }
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
883
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
884 int tv_get_color_options(tvi_handle_t *tvh, int opt, int* value)
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
885 {
25688
cd4af70b12ef Make some tvi_functions_t pointers const that I forgot to change before
reimar
parents: 25687
diff changeset
886 const tvi_functions_t *funcs = tvh->functions;
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
887
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
888 switch(opt)
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
889 {
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
890 case TV_COLOR_BRIGHTNESS:
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
891 return funcs->control(tvh->priv, TVI_CONTROL_VID_GET_BRIGHTNESS, value);
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
892 case TV_COLOR_HUE:
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
893 return funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HUE, value);
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
894 case TV_COLOR_SATURATION:
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
895 return funcs->control(tvh->priv, TVI_CONTROL_VID_GET_SATURATION, value);
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
896 case TV_COLOR_CONTRAST:
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
897 return funcs->control(tvh->priv, TVI_CONTROL_VID_GET_CONTRAST, value);
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
898 default:
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
899 mp_msg(MSGT_TV, MSGL_WARN, MSGTR_TV_UnknownColorOption, opt);
18172
90b62d7c0fca Implement tv_get_color_options() and make tv_set_color_options() return
albeu
parents: 18073
diff changeset
900 }
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
901
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
902 return TVI_CONTROL_UNKNOWN;
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
903 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
904
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
905 int tv_get_freq(tvi_handle_t *tvh, unsigned long *freq)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
906 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
907 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) == TVI_CONTROL_TRUE)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
908 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
909 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, freq);
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
910 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_CurrentFrequency,
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
911 *freq, (float)*freq/16);
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
912 }
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
913 return 1;
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
914 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
915
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
916 int tv_set_freq(tvi_handle_t *tvh, unsigned long freq)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
917 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
918 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) == TVI_CONTROL_TRUE)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
919 {
23887
2b431d844608 Removing global variables from tv://
voroshil
parents: 23883
diff changeset
920 // unsigned long freq = atof(tvh->tv_param->freq)*16;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
921
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
922 /* set freq in MHz */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
923 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_FREQ, &freq);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
924
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
925 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
926 mp_msg(MSGT_TV, MSGL_V, MSGTR_TV_CurrentFrequency,
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
927 freq, (float)freq/16);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
928 }
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
929 teletext_control(tvh->demuxer->teletext,TV_VBI_CONTROL_RESET,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
930 &tvh->tv_param->teletext);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
931 return 1;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
932 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
933
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
934 int tv_get_signal(tvi_handle_t *tvh)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
935 {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
936 int signal=0;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
937 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) != TVI_CONTROL_TRUE ||
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
938 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_SIGNAL, &signal)!=TVI_CONTROL_TRUE)
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
939 return 0;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
940
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
941 return signal;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
942 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
943
22667
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
944 /*****************************************************************
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
945 * \brief tune current frequency by step_interval value
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
946 * \parameter step_interval increment value in 1/16 MHz
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
947 * \note frequency is rounded to 1/16 MHz value
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
948 * \return 1
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
949 *
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
950 */
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
951 int tv_step_freq(tvi_handle_t* tvh, float step_interval){
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
952 unsigned long frequency;
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
953
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
954 tvh->tv_param->scan=0;
22667
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
955 tv_get_freq(tvh,&frequency);
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
956 frequency+=step_interval;
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
957 return tv_set_freq(tvh,frequency);
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
958 }
e1859558b37d New slave command: tv_step_freq <offset in MHz>
voroshil
parents: 22619
diff changeset
959
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
960 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
961 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
962 struct CHANLIST cl;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
963
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
964 tvh->tv_param->scan=0;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
965 if (direction == TV_CHANNEL_LOWER)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
966 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
967 if (tvh->channel-1 >= 0)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
968 {
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
969 strcpy(tv_channel_last_real, tvh->chanlist_s[tvh->channel].name);
5923
4241047fb315 patch by J«ärgen Appel <jappel@linux01.gwdg.de>:
pl
parents: 5572
diff changeset
970 cl = tvh->chanlist_s[--tvh->channel];
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
971 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel2,
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
972 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
973 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
974 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
975 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
976
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
977 if (direction == TV_CHANNEL_HIGHER)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
978 {
4242
bbfbe9bbb956 fixed channel changing with frequencies.c
alex
parents: 3815
diff changeset
979 if (tvh->channel+1 < chanlists[tvh->chanlist].count)
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
980 {
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
981 strcpy(tv_channel_last_real, tvh->chanlist_s[tvh->channel].name);
5923
4241047fb315 patch by J«ärgen Appel <jappel@linux01.gwdg.de>:
pl
parents: 5572
diff changeset
982 cl = tvh->chanlist_s[++tvh->channel];
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
983 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel2,
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
984 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
985 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
24748
c9b8748fcae0 (cosmetics) remove trailing whitespace
voroshil
parents: 24747
diff changeset
986 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
987 }
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
988 return 1;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
989 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
990
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
991 int tv_step_channel(tvi_handle_t *tvh, int direction) {
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
992 tvh->tv_param->scan=0;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
993 if (tv_channel_list) {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
994 if (direction == TV_CHANNEL_HIGHER) {
16469
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
995 tv_channel_last = tv_channel_current;
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
996 if (tv_channel_current->next)
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
997 tv_channel_current = tv_channel_current->next;
16469
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
998 else
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
999 tv_channel_current = tv_channel_list;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28940
diff changeset
1000
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
1001 tv_set_norm_i(tvh, tv_channel_current->norm);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1002 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1003 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel3,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1004 tv_channel_current->number, tv_channel_current->name, (float)tv_channel_current->freq/1000);
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1005 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1006 if (direction == TV_CHANNEL_LOWER) {
16469
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
1007 tv_channel_last = tv_channel_current;
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
1008 if (tv_channel_current->prev)
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1009 tv_channel_current = tv_channel_current->prev;
16469
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
1010 else
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
1011 while (tv_channel_current->next)
8c1c8d10c163 cycle through tv channels (patch by Andrew Calkin < calkina at geexbox.org >)
aurel
parents: 16175
diff changeset
1012 tv_channel_current = tv_channel_current->next;
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
1013 tv_set_norm_i(tvh, tv_channel_current->norm);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1014 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1015 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel3,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1016 tv_channel_current->number, tv_channel_current->name, (float)tv_channel_current->freq/1000);
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1017 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1018 } else tv_step_channel_real(tvh, direction);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1019 return 1;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1020 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1021
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1022 int tv_set_channel_real(tvi_handle_t *tvh, char *channel) {
8494
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1023 int i;
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1024 struct CHANLIST cl;
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1025
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
1026 tvh->tv_param->scan=0;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1027 strcpy(tv_channel_last_real, tvh->chanlist_s[tvh->channel].name);
8494
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1028 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1029 {
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1030 cl = tvh->chanlist_s[i];
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1031 // printf("count%d: name: %s, freq: %d\n",
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1032 // i, cl.name, cl.freq);
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1033 if (!strcasecmp(cl.name, channel))
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1034 {
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1035 tvh->channel = i;
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1036 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel2,
8494
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1037 cl.name, (float)cl.freq/1000);
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1038 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1039 break;
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1040 }
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1041 }
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1042 return 1;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1043 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1044
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1045 int tv_set_channel(tvi_handle_t *tvh, char *channel) {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1046 int i, channel_int;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1047
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
1048 tvh->tv_param->scan=0;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1049 if (tv_channel_list) {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1050 tv_channel_last = tv_channel_current;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1051 channel_int = atoi(channel);
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1052 tv_channel_current = tv_channel_list;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1053 for (i = 1; i < channel_int; i++)
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1054 if (tv_channel_current->next)
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1055 tv_channel_current = tv_channel_current->next;
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1056 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel3, tv_channel_current->number,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1057 tv_channel_current->name, (float)tv_channel_current->freq/1000);
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
1058 tv_set_norm_i(tvh, tv_channel_current->norm);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1059 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1060 } else tv_set_channel_real(tvh, channel);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1061 return 1;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1062 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1063
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1064 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
1065
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23900
diff changeset
1066 tvh->tv_param->scan=0;
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1067 if (tv_channel_list) {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1068 tv_channels_t *tmp;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1069
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1070 tmp = tv_channel_last;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1071 tv_channel_last = tv_channel_current;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1072 tv_channel_current = tmp;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1073
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1074 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel3, tv_channel_current->number,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1075 tv_channel_current->name, (float)tv_channel_current->freq/1000);
27025
e598c9756181 Ability for specifying TV standard individually for each TV channel.
voroshil
parents: 26756
diff changeset
1076 tv_set_norm_i(tvh, tv_channel_current->norm);
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1077 tv_set_freq(tvh, (unsigned long)(((float)tv_channel_current->freq/1000)*16));
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1078 } else {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1079 int i;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1080 struct CHANLIST cl;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1081
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1082 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1083 {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1084 cl = tvh->chanlist_s[i];
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1085 if (!strcasecmp(cl.name, tv_channel_last_real))
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1086 {
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1087 strcpy(tv_channel_last_real, tvh->chanlist_s[tvh->channel].name);
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1088 tvh->channel = i;
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1089 mp_msg(MSGT_TV, MSGL_INFO, MSGTR_TV_SelectedChannel2,
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1090 cl.name, (float)cl.freq/1000);
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1091 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1092 break;
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1093 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1094 }
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8494
diff changeset
1095 }
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1096 return 1;
8494
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1097 }
47cf94058137 add a TV_SET_CNANNEL command
henry
parents: 8487
diff changeset
1098
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
1099 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
1100 {
16961
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1101 tvh->norm++;
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1102 if (tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_NORM,
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1103 &tvh->norm) != TVI_CONTROL_TRUE) {
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1104 tvh->norm = 0;
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1105 if (tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_NORM,
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1106 &tvh->norm) != TVI_CONTROL_TRUE) {
22967
25704c80d194 Move translatable strings from tv.c to help_mp*
voroshil
parents: 22728
diff changeset
1107 mp_msg(MSGT_TV, MSGL_ERR, MSGTR_TV_CannotSetNorm);
16961
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1108 return 0;
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1109 }
8b5a4d2dcc2b implement norm switching, which was already documented??
reimar
parents: 16469
diff changeset
1110 }
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
1111 teletext_control(tvh->demuxer->teletext,TV_VBI_CONTROL_RESET,
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29759
diff changeset
1112 &tvh->tv_param->teletext);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1113 return 1;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
1114 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
1115
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
1116 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
1117 {
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25689
diff changeset
1118 return 1;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
1119 }
10521
141141fdd250 I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents: 10368
diff changeset
1120
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1121 demuxer_desc_t demuxer_desc_tv = {
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1122 "Tv card demuxer",
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1123 "tv",
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1124 "TV",
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1125 "Alex Beregszaszi, Charles R. Henrich",
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1126 "?",
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1127 DEMUXER_TYPE_TV,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1128 0, // no autodetect
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1129 NULL,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1130 demux_tv_fill_buffer,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1131 demux_open_tv,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1132 demux_close_tv,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1133 NULL,
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1134 NULL
6b86089c2edd Demuxer modularization
rtognimp
parents: 15419
diff changeset
1135 };