Mercurial > mplayer.hg
annotate stream/stream_dvb.c @ 23864:889473a51715
Remove some unneeded extern variable declarations
author | reimar |
---|---|
date | Fri, 27 Jul 2007 20:22:55 +0000 |
parents | 9fb716ab06a3 |
children | 76f5d8892c04 |
rev | line source |
---|---|
19296 | 1 /* |
2 | |
3 dvbstream | |
4 (C) Dave Chapman <dave@dchapman.com> 2001, 2002. | |
5 | |
6 The latest version can be found at http://www.linuxstb.org/dvbstream | |
7 | |
8 Modified for use with MPlayer, for details see the changelog at | |
9 http://svn.mplayerhq.hu/mplayer/trunk/ | |
10 $Id$ | |
11 | |
12 Copyright notice: | |
13 | |
14 This program is free software; you can redistribute it and/or modify | |
15 it under the terms of the GNU General Public License as published by | |
16 the Free Software Foundation; either version 2 of the License, or | |
17 (at your option) any later version. | |
18 | |
19 This program is distributed in the hope that it will be useful, | |
20 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 GNU General Public License for more details. | |
23 | |
24 You should have received a copy of the GNU General Public License | |
25 along with this program; if not, write to the Free Software | |
21977
cea0eb833758
Fix FSF address and otherwise broken license headers.
diego
parents:
21834
diff
changeset
|
26 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19296 | 27 |
28 */ | |
29 | |
30 #include "config.h" | |
31 #include <stdio.h> | |
32 #include <stdlib.h> | |
33 #include <string.h> | |
34 #include <ctype.h> | |
35 #include <sys/ioctl.h> | |
36 #include <sys/time.h> | |
37 #include <sys/poll.h> | |
38 #include <unistd.h> | |
39 #include <fcntl.h> | |
40 #include <errno.h> | |
41 | |
42 #include "stream.h" | |
19312
ab8d6b6deb63
proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents:
19296
diff
changeset
|
43 #include "libmpdemux/demuxer.h" |
19296 | 44 #include "help_mp.h" |
45 #include "m_option.h" | |
46 #include "m_struct.h" | |
23703
9fb716ab06a3
Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents:
23629
diff
changeset
|
47 #include "libavutil/avstring.h" |
19296 | 48 |
49 #include "dvbin.h" | |
50 | |
51 | |
52 #define MAX_CHANNELS 8 | |
53 #define CHANNEL_LINE_LEN 256 | |
54 #define min(a, b) ((a) <= (b) ? (a) : (b)) | |
55 | |
56 | |
57 //TODO: CAMBIARE list_ptr e da globale a per_priv | |
58 | |
59 | |
60 static struct stream_priv_s | |
61 { | |
62 char *prog; | |
63 int card; | |
64 char *type; | |
65 int vid, aid; | |
66 int timeout; | |
67 char *file; | |
68 } | |
69 stream_defaults = | |
70 { | |
71 "", 1, "", 0, 0, 30, NULL | |
72 }; | |
73 | |
74 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s, f) | |
75 | |
76 /// URL definition | |
77 static m_option_t stream_params[] = { | |
78 {"prog", ST_OFF(prog), CONF_TYPE_STRING, 0, 0 ,0, NULL}, | |
79 {"card", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL}, | |
80 {"type", ST_OFF(type), CONF_TYPE_STRING, 0, 0 ,0, NULL}, | |
81 {"vid", ST_OFF(vid), CONF_TYPE_INT, 0, 0 ,0, NULL}, | |
82 {"aid", ST_OFF(aid), CONF_TYPE_INT, 0, 0 ,0, NULL}, | |
83 {"timeout",ST_OFF(timeout), CONF_TYPE_INT, M_OPT_RANGE, 1, 30, NULL}, | |
84 {"file", ST_OFF(file), CONF_TYPE_STRING, 0, 0 ,0, NULL}, | |
85 | |
86 {"hostname", ST_OFF(prog), CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
87 {"username", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL}, | |
88 {NULL, NULL, 0, 0, 0, 0, NULL} | |
89 }; | |
90 | |
91 static struct m_struct_st stream_opts = { | |
92 "dvbin", | |
93 sizeof(struct stream_priv_s), | |
94 &stream_defaults, | |
95 stream_params | |
96 }; | |
97 | |
98 | |
99 | |
100 m_option_t dvbin_opts_conf[] = { | |
101 {"prog", &stream_defaults.prog, CONF_TYPE_STRING, 0, 0 ,0, NULL}, | |
102 {"card", &stream_defaults.card, CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL}, | |
103 {"type", "DVB card type is autodetected and can't be overridden\n", CONF_TYPE_PRINT, CONF_NOCFG, 0 ,0, NULL}, | |
104 {"vid", &stream_defaults.vid, CONF_TYPE_INT, 0, 0 ,0, NULL}, | |
105 {"aid", &stream_defaults.aid, CONF_TYPE_INT, 0, 0 ,0, NULL}, | |
106 {"timeout", &stream_defaults.timeout, CONF_TYPE_INT, M_OPT_RANGE, 1, 30, NULL}, | |
107 {"file", &stream_defaults.file, CONF_TYPE_STRING, 0, 0 ,0, NULL}, | |
108 | |
109 {NULL, NULL, 0, 0, 0, 0, NULL} | |
110 }; | |
111 | |
112 | |
113 | |
114 | |
115 extern int dvb_set_ts_filt(int fd, uint16_t pid, dmx_pes_type_t pestype); | |
116 extern int dvb_demux_stop(int fd); | |
117 extern int dvb_get_tuner_type(int fd); | |
118 int dvb_open_devices(dvb_priv_t *priv, int n, int demux_cnt, int *pids); | |
119 int dvb_fix_demuxes(dvb_priv_t *priv, int cnt, int *pids); | |
120 | |
121 extern int dvb_tune(dvb_priv_t *priv, int freq, char pol, int srate, int diseqc, int tone, | |
122 fe_spectral_inversion_t specInv, fe_modulation_t modulation, fe_guard_interval_t guardInterval, | |
123 fe_transmit_mode_t TransmissionMode, fe_bandwidth_t bandWidth, fe_code_rate_t HP_CodeRate, | |
124 fe_code_rate_t LP_CodeRate, fe_hierarchy_t hier, int timeout); | |
125 extern char *dvb_dvrdev[4], *dvb_demuxdev[4], *dvb_frontenddev[4]; | |
126 | |
127 static dvb_config_t *dvb_config = NULL; | |
128 | |
129 | |
130 static dvb_channels_list *dvb_get_channels(char *filename, int type) | |
131 { | |
132 dvb_channels_list *list; | |
133 FILE *f; | |
134 char line[CHANNEL_LINE_LEN], *colon; | |
135 | |
136 int fields, cnt, pcnt, k; | |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
137 int has8192, has0; |
19296 | 138 dvb_channel_t *ptr, *tmp, chn; |
139 char tmp_lcr[256], tmp_hier[256], inv[256], bw[256], cr[256], mod[256], transm[256], gi[256], vpid_str[256], apid_str[256]; | |
140 const char *cbl_conf = "%d:%255[^:]:%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n"; | |
141 const char *sat_conf = "%d:%c:%d:%d:%255[^:]:%255[^:]\n"; | |
142 const char *ter_conf = "%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n"; | |
143 const char *atsc_conf = "%d:%255[^:]:%255[^:]:%255[^:]\n"; | |
144 | |
145 mp_msg(MSGT_DEMUX, MSGL_V, "CONFIG_READ FILE: %s, type: %d\n", filename, type); | |
146 if((f=fopen(filename, "r"))==NULL) | |
147 { | |
148 mp_msg(MSGT_DEMUX, MSGL_FATAL, "CAN'T READ CONFIG FILE %s\n", filename); | |
149 return NULL; | |
150 } | |
151 | |
152 list = malloc(sizeof(dvb_channels_list)); | |
153 if(list == NULL) | |
154 { | |
155 fclose(f); | |
156 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: couldn't malloc enough memory\n"); | |
157 return NULL; | |
158 } | |
159 | |
160 ptr = &chn; | |
161 list->NUM_CHANNELS = 0; | |
162 list->channels = NULL; | |
163 while(! feof(f)) | |
164 { | |
165 if( fgets(line, CHANNEL_LINE_LEN, f) == NULL ) | |
166 continue; | |
167 | |
168 if((line[0] == '#') || (strlen(line) == 0)) | |
169 continue; | |
170 | |
21464 | 171 colon = strchr(line, ':'); |
19296 | 172 if(colon) |
173 { | |
174 k = colon - line; | |
175 if(!k) | |
176 continue; | |
23629 | 177 ptr->name = malloc(k+1); |
19296 | 178 if(! ptr->name) |
179 continue; | |
23703
9fb716ab06a3
Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents:
23629
diff
changeset
|
180 av_strlcpy(ptr->name, line, k+1); |
19296 | 181 } |
182 else | |
183 continue; | |
184 k++; | |
185 apid_str[0] = vpid_str[0] = 0; | |
186 ptr->pids_cnt = 0; | |
187 ptr->freq = 0; | |
188 if(type == TUNER_TER) | |
189 { | |
190 fields = sscanf(&line[k], ter_conf, | |
191 &ptr->freq, inv, bw, cr, tmp_lcr, mod, | |
192 transm, gi, tmp_hier, vpid_str, apid_str); | |
193 mp_msg(MSGT_DEMUX, MSGL_V, | |
194 "TER, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d", | |
195 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); | |
196 } | |
197 else if(type == TUNER_CBL) | |
198 { | |
199 fields = sscanf(&line[k], cbl_conf, | |
200 &ptr->freq, inv, &ptr->srate, | |
201 cr, mod, vpid_str, apid_str); | |
202 mp_msg(MSGT_DEMUX, MSGL_V, | |
203 "CBL, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d", | |
204 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate); | |
205 } | |
206 #ifdef DVB_ATSC | |
207 else if(type == TUNER_ATSC) | |
208 { | |
209 fields = sscanf(&line[k], atsc_conf, | |
210 &ptr->freq, mod, vpid_str, apid_str); | |
211 mp_msg(MSGT_DEMUX, MSGL_V, | |
212 "ATSC, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d\n", | |
213 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); | |
214 } | |
215 #endif | |
216 else //SATELLITE | |
217 { | |
218 fields = sscanf(&line[k], sat_conf, | |
219 &ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, vpid_str, apid_str); | |
220 ptr->pol = toupper(ptr->pol); | |
221 ptr->freq *= 1000UL; | |
222 ptr->srate *= 1000UL; | |
223 ptr->tone = -1; | |
224 ptr->inv = INVERSION_AUTO; | |
225 ptr->cr = FEC_AUTO; | |
226 if((ptr->diseqc > 4) || (ptr->diseqc < 0)) | |
227 continue; | |
228 if(ptr->diseqc > 0) | |
229 ptr->diseqc--; | |
230 mp_msg(MSGT_DEMUX, MSGL_V, | |
231 "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d", | |
232 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc); | |
233 } | |
234 | |
235 if(vpid_str[0]) | |
236 { | |
237 pcnt = sscanf(vpid_str, "%d+%d+%d+%d+%d+%d+%d", &ptr->pids[0], &ptr->pids[1], &ptr->pids[2], &ptr->pids[3], | |
238 &ptr->pids[4], &ptr->pids[5], &ptr->pids[6]); | |
239 if(pcnt > 0) | |
240 { | |
241 ptr->pids_cnt = pcnt; | |
242 fields++; | |
243 } | |
244 } | |
245 | |
246 if(apid_str[0]) | |
247 { | |
248 cnt = ptr->pids_cnt; | |
249 pcnt = sscanf(apid_str, "%d+%d+%d+%d+%d+%d+%d+%d", &ptr->pids[cnt], &ptr->pids[cnt+1], &ptr->pids[cnt+2], | |
250 &ptr->pids[cnt+3], &ptr->pids[cnt+4], &ptr->pids[cnt+5], &ptr->pids[cnt+6], &ptr->pids[cnt+7]); | |
251 if(pcnt > 0) | |
252 { | |
253 ptr->pids_cnt += pcnt; | |
254 fields++; | |
255 } | |
256 } | |
257 | |
258 if((fields < 2) || (ptr->pids_cnt <= 0) || (ptr->freq == 0) || (strlen(ptr->name) == 0)) | |
259 continue; | |
260 | |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
261 has8192 = has0 = 0; |
21033
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
262 for(cnt = 0; cnt < ptr->pids_cnt; cnt++) |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
263 { |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
264 if(ptr->pids[cnt] == 8192) |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
265 has8192 = 1; |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
266 if(ptr->pids[cnt] == 0) |
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
267 has0 = 1; |
21033
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
268 } |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
269 if(has8192) |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
270 { |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
271 ptr->pids[0] = 8192; |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
272 ptr->pids_cnt = 1; |
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
273 } |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
274 else if(! has0) |
21033
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
275 { |
21034 | 276 ptr->pids[ptr->pids_cnt] = 0; //PID 0 is the PAT |
277 ptr->pids_cnt++; | |
21033
087cad309e9c
if in the list of pids appears at least one 8192 (while TS) remove all other pid filters
nicodvb
parents:
20660
diff
changeset
|
278 } |
19296 | 279 mp_msg(MSGT_DEMUX, MSGL_V, " PIDS: "); |
280 for(cnt = 0; cnt < ptr->pids_cnt; cnt++) | |
281 mp_msg(MSGT_DEMUX, MSGL_V, " %d ", ptr->pids[cnt]); | |
282 mp_msg(MSGT_DEMUX, MSGL_V, "\n"); | |
283 | |
284 if((type == TUNER_TER) || (type == TUNER_CBL)) | |
285 { | |
286 if(! strcmp(inv, "INVERSION_ON")) | |
287 ptr->inv = INVERSION_ON; | |
288 else if(! strcmp(inv, "INVERSION_OFF")) | |
289 ptr->inv = INVERSION_OFF; | |
290 else | |
291 ptr->inv = INVERSION_AUTO; | |
292 | |
293 | |
294 if(! strcmp(cr, "FEC_1_2")) | |
295 ptr->cr =FEC_1_2; | |
296 else if(! strcmp(cr, "FEC_2_3")) | |
297 ptr->cr =FEC_2_3; | |
298 else if(! strcmp(cr, "FEC_3_4")) | |
299 ptr->cr =FEC_3_4; | |
300 #ifdef HAVE_DVB_HEAD | |
301 else if(! strcmp(cr, "FEC_4_5")) | |
302 ptr->cr =FEC_4_5; | |
303 else if(! strcmp(cr, "FEC_6_7")) | |
304 ptr->cr =FEC_6_7; | |
305 else if(! strcmp(cr, "FEC_8_9")) | |
306 ptr->cr =FEC_8_9; | |
307 #endif | |
308 else if(! strcmp(cr, "FEC_5_6")) | |
309 ptr->cr =FEC_5_6; | |
310 else if(! strcmp(cr, "FEC_7_8")) | |
311 ptr->cr =FEC_7_8; | |
312 else if(! strcmp(cr, "FEC_NONE")) | |
313 ptr->cr =FEC_NONE; | |
314 else ptr->cr =FEC_AUTO; | |
315 } | |
316 | |
317 | |
318 if((type == TUNER_TER) || (type == TUNER_CBL) || (type == TUNER_ATSC)) | |
319 { | |
320 if(! strcmp(mod, "QAM_128")) | |
321 ptr->mod = QAM_128; | |
322 else if(! strcmp(mod, "QAM_256")) | |
323 ptr->mod = QAM_256; | |
324 else if(! strcmp(mod, "QAM_64")) | |
325 ptr->mod = QAM_64; | |
326 else if(! strcmp(mod, "QAM_32")) | |
327 ptr->mod = QAM_32; | |
328 else if(! strcmp(mod, "QAM_16")) | |
329 ptr->mod = QAM_16; | |
330 #ifdef DVB_ATSC | |
331 else if(! strcmp(mod, "VSB_8") || ! strcmp(mod, "8VSB")) | |
332 ptr->mod = VSB_8; | |
333 else if(! strcmp(mod, "VSB_16") || !strcmp(mod, "16VSB")) | |
334 ptr->mod = VSB_16; | |
335 | |
336 ptr->inv = INVERSION_AUTO; | |
337 #endif | |
338 } | |
339 | |
340 if(type == TUNER_TER) | |
341 { | |
342 if(! strcmp(bw, "BANDWIDTH_6_MHZ")) | |
343 ptr->bw = BANDWIDTH_6_MHZ; | |
344 else if(! strcmp(bw, "BANDWIDTH_7_MHZ")) | |
345 ptr->bw = BANDWIDTH_7_MHZ; | |
346 else if(! strcmp(bw, "BANDWIDTH_8_MHZ")) | |
347 ptr->bw = BANDWIDTH_8_MHZ; | |
348 | |
349 | |
350 if(! strcmp(transm, "TRANSMISSION_MODE_2K")) | |
351 ptr->trans = TRANSMISSION_MODE_2K; | |
352 else if(! strcmp(transm, "TRANSMISSION_MODE_8K")) | |
353 ptr->trans = TRANSMISSION_MODE_8K; | |
354 | |
355 | |
356 if(! strcmp(gi, "GUARD_INTERVAL_1_32")) | |
357 ptr->gi = GUARD_INTERVAL_1_32; | |
358 else if(! strcmp(gi, "GUARD_INTERVAL_1_16")) | |
359 ptr->gi = GUARD_INTERVAL_1_16; | |
360 else if(! strcmp(gi, "GUARD_INTERVAL_1_8")) | |
361 ptr->gi = GUARD_INTERVAL_1_8; | |
362 else ptr->gi = GUARD_INTERVAL_1_4; | |
363 | |
364 if(! strcmp(tmp_lcr, "FEC_1_2")) | |
365 ptr->cr_lp =FEC_1_2; | |
366 else if(! strcmp(tmp_lcr, "FEC_2_3")) | |
367 ptr->cr_lp =FEC_2_3; | |
368 else if(! strcmp(tmp_lcr, "FEC_3_4")) | |
369 ptr->cr_lp =FEC_3_4; | |
370 #ifdef HAVE_DVB_HEAD | |
371 else if(! strcmp(tmp_lcr, "FEC_4_5")) | |
372 ptr->cr_lp =FEC_4_5; | |
373 else if(! strcmp(tmp_lcr, "FEC_6_7")) | |
374 ptr->cr_lp =FEC_6_7; | |
375 else if(! strcmp(tmp_lcr, "FEC_8_9")) | |
376 ptr->cr_lp =FEC_8_9; | |
377 #endif | |
378 else if(! strcmp(tmp_lcr, "FEC_5_6")) | |
379 ptr->cr_lp =FEC_5_6; | |
380 else if(! strcmp(tmp_lcr, "FEC_7_8")) | |
381 ptr->cr_lp =FEC_7_8; | |
382 else if(! strcmp(tmp_lcr, "FEC_NONE")) | |
383 ptr->cr_lp =FEC_NONE; | |
384 else ptr->cr_lp =FEC_AUTO; | |
385 | |
386 | |
387 if(! strcmp(tmp_hier, "HIERARCHY_1")) | |
388 ptr->hier = HIERARCHY_1; | |
389 else if(! strcmp(tmp_hier, "HIERARCHY_2")) | |
390 ptr->hier = HIERARCHY_2; | |
391 else if(! strcmp(tmp_hier, "HIERARCHY_4")) | |
392 ptr->hier = HIERARCHY_4; | |
393 #ifdef HAVE_DVB_HEAD | |
394 else if(! strcmp(tmp_hier, "HIERARCHY_AUTO")) | |
395 ptr->hier = HIERARCHY_AUTO; | |
396 #endif | |
397 else ptr->hier = HIERARCHY_NONE; | |
398 } | |
399 | |
23629 | 400 tmp = realloc(list->channels, sizeof(dvb_channel_t) * (list->NUM_CHANNELS + 1)); |
19296 | 401 if(tmp == NULL) |
402 break; | |
403 | |
404 list->channels = tmp; | |
405 memcpy(&(list->channels[list->NUM_CHANNELS]), ptr, sizeof(dvb_channel_t)); | |
406 list->NUM_CHANNELS++; | |
407 if(sizeof(dvb_channel_t) * list->NUM_CHANNELS >= 1024*1024) | |
408 { | |
409 mp_msg(MSGT_DEMUX, MSGL_V, "dvbin.c, > 1MB allocated for channels struct, dropping the rest of the file\r\n"); | |
410 break; | |
411 } | |
412 } | |
413 | |
414 fclose(f); | |
415 if(list->NUM_CHANNELS == 0) | |
416 { | |
417 if(list->channels != NULL) | |
418 free(list->channels); | |
419 free(list); | |
420 return NULL; | |
421 } | |
422 | |
423 list->current = 0; | |
424 return list; | |
425 } | |
426 | |
427 | |
428 | |
429 static int dvb_streaming_read(stream_t *stream, char *buffer, int size) | |
430 { | |
431 struct pollfd pfds[1]; | |
432 int pos=0, tries, rk, fd; | |
433 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; | |
434 | |
435 mp_msg(MSGT_DEMUX, MSGL_DBG3, "dvb_streaming_read(%d)\n", size); | |
436 | |
437 tries = priv->retry + 1; | |
438 | |
439 fd = stream->fd; | |
440 while(pos < size) | |
441 { | |
442 pfds[0].fd = fd; | |
443 pfds[0].events = POLLIN | POLLPRI; | |
444 | |
445 rk = size - pos; | |
446 if(poll(pfds, 1, 500) <= 0) | |
447 { | |
23486 | 448 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, attempt N. %d failed with errno %d when reading %d bytes\n", tries, errno, size-pos); |
19296 | 449 errno = 0; |
450 if(--tries > 0) | |
451 continue; | |
452 else | |
453 break; | |
454 } | |
455 if((rk = read(fd, &buffer[pos], rk)) > 0) | |
456 { | |
457 pos += rk; | |
458 mp_msg(MSGT_DEMUX, MSGL_DBG3, "ret (%d) bytes\n", pos); | |
459 } | |
460 } | |
461 | |
462 | |
463 if(! pos) | |
464 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, return %d bytes\n", pos); | |
465 | |
466 return pos; | |
467 } | |
468 | |
469 static void dvbin_close(stream_t *stream); | |
470 | |
471 int dvb_set_channel(dvb_priv_t *priv, int card, int n) | |
472 { | |
473 dvb_channels_list *new_list; | |
474 dvb_channel_t *channel; | |
475 stream_t *stream = (stream_t*) priv->stream; | |
476 char buf[4096]; | |
477 dvb_config_t *conf = (dvb_config_t *) priv->config; | |
478 int devno; | |
479 int i; | |
480 | |
481 if((card < 0) || (card > conf->count)) | |
482 { | |
483 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CARD NUMBER: %d vs %d, abort\n", card, conf->count); | |
484 return 0; | |
485 } | |
486 | |
487 devno = conf->cards[card].devno; | |
488 new_list = conf->cards[card].list; | |
489 if((n > new_list->NUM_CHANNELS) || (n < 0)) | |
490 { | |
491 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, for card %d, abort\n", n, card); | |
492 return 0; | |
493 } | |
494 channel = &(new_list->channels[n]); | |
495 | |
496 if(priv->is_on) //the fds are already open and we have to stop the demuxers | |
497 { | |
498 for(i = 0; i < priv->demux_fds_cnt; i++) | |
499 dvb_demux_stop(priv->demux_fds[i]); | |
500 | |
501 priv->retry = 0; | |
502 while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer | |
503 if(priv->card != card) | |
504 { | |
505 dvbin_close(stream); | |
506 if(! dvb_open_devices(priv, devno, channel->pids_cnt, channel->pids)) | |
507 { | |
508 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); | |
509 return 0; | |
510 } | |
511 } | |
512 else //close all demux_fds with pos > pids required for the new channel or open other demux_fds if we have too few | |
513 { | |
514 if(! dvb_fix_demuxes(priv, channel->pids_cnt, channel->pids)) | |
515 return 0; | |
516 } | |
517 } | |
518 else | |
519 { | |
520 if(! dvb_open_devices(priv, devno, channel->pids_cnt, channel->pids)) | |
521 { | |
522 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL2, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); | |
523 return 0; | |
524 } | |
525 } | |
526 | |
527 dvb_config->priv = priv; | |
528 priv->card = card; | |
529 priv->list = new_list; | |
530 priv->retry = 5; | |
531 new_list->current = n; | |
532 stream->fd = priv->dvr_fd; | |
533 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: new channel name=%s, card: %d, channel %d\n", channel->name, card, n); | |
534 | |
535 stream->eof=1; | |
536 stream_reset(stream); | |
537 | |
538 | |
20659
31b525f90395
nonsense removal: compare old and new frequency in order to skip tuning
nicodvb
parents:
19312
diff
changeset
|
539 if(channel->freq != priv->last_freq) |
19296 | 540 if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone, |
541 channel->inv, channel->mod, channel->gi, channel->trans, channel->bw, channel->cr, channel->cr_lp, channel->hier, priv->timeout)) | |
542 return 0; | |
543 | |
20659
31b525f90395
nonsense removal: compare old and new frequency in order to skip tuning
nicodvb
parents:
19312
diff
changeset
|
544 priv->last_freq = channel->freq; |
19296 | 545 priv->is_on = 1; |
546 | |
547 //sets demux filters and restart the stream | |
548 for(i = 0; i < channel->pids_cnt; i++) | |
549 { | |
550 if(! dvb_set_ts_filt(priv->demux_fds[i], channel->pids[i], DMX_PES_OTHER)) | |
551 return 0; | |
552 } | |
553 | |
554 return 1; | |
555 } | |
556 | |
557 | |
558 | |
559 int dvb_step_channel(dvb_priv_t *priv, int dir) | |
560 { | |
561 int new_current; | |
562 dvb_channels_list *list; | |
563 | |
564 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_STEP_CHANNEL dir %d\n", dir); | |
565 | |
566 if(priv == NULL) | |
567 { | |
568 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL priv_ptr, quit\n"); | |
569 return 0; | |
570 } | |
571 | |
572 list = priv->list; | |
573 if(list == NULL) | |
574 { | |
575 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL list_ptr, quit\n"); | |
576 return 0; | |
577 } | |
578 | |
579 new_current = (list->NUM_CHANNELS + list->current + (dir == DVB_CHANNEL_HIGHER ? 1 : -1)) % list->NUM_CHANNELS; | |
580 | |
581 return dvb_set_channel(priv, priv->card, new_current); | |
582 } | |
583 | |
584 | |
585 | |
586 | |
587 extern char *get_path(const char *); | |
588 | |
589 static void dvbin_close(stream_t *stream) | |
590 { | |
591 int i; | |
592 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; | |
593 | |
594 for(i = priv->demux_fds_cnt-1; i >= 0; i--) | |
595 { | |
596 priv->demux_fds_cnt--; | |
597 mp_msg(MSGT_DEMUX, MSGL_V, "DVBIN_CLOSE, close(%d), fd=%d, COUNT=%d\n", i, priv->demux_fds[i], priv->demux_fds_cnt); | |
598 close(priv->demux_fds[i]); | |
599 } | |
600 close(priv->dvr_fd); | |
601 | |
602 close(priv->fe_fd); | |
603 #ifdef HAVE_DVB | |
604 close(priv->sec_fd); | |
605 #endif | |
606 | |
607 priv->is_on = 0; | |
608 dvb_config->priv = NULL; | |
609 } | |
610 | |
611 | |
612 static int dvb_streaming_start(dvb_priv_t *priv, struct stream_priv_s *opts, int tuner_type, char *progname) | |
613 { | |
614 int i; | |
615 dvb_channel_t *channel = NULL; | |
616 stream_t *stream = (stream_t*) priv->stream; | |
617 | |
618 mp_msg(MSGT_DEMUX, MSGL_V, "\r\ndvb_streaming_start(PROG: %s, CARD: %d, VID: %d, AID: %d, TYPE: %s, FILE: %s)\r\n", | |
619 opts->prog, opts->card, opts->vid, opts->aid, opts->type, opts->file); | |
620 | |
621 priv->is_on = 0; | |
622 | |
623 i = 0; | |
624 while((channel == NULL) && i < priv->list->NUM_CHANNELS) | |
625 { | |
626 if(! strcmp(priv->list->channels[i].name, progname)) | |
627 channel = &(priv->list->channels[i]); | |
628 | |
629 i++; | |
630 } | |
631 | |
632 if(channel != NULL) | |
633 { | |
634 priv->list->current = i-1; | |
635 mp_msg(MSGT_DEMUX, MSGL_V, "PROGRAM NUMBER %d: name=%s, freq=%u\n", i-1, channel->name, channel->freq); | |
636 } | |
637 else | |
638 { | |
639 mp_msg(MSGT_DEMUX, MSGL_ERR, "\n\nDVBIN: no such channel \"%s\"\n\n", progname); | |
640 return 0; | |
641 } | |
642 | |
643 | |
644 if(!dvb_set_channel(priv, priv->card, priv->list->current)) | |
645 { | |
646 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR, COULDN'T SET CHANNEL %i: ", priv->list->current); | |
647 dvbin_close(stream); | |
648 return 0; | |
649 } | |
650 | |
651 mp_msg(MSGT_DEMUX, MSGL_V, "SUCCESSFUL EXIT from dvb_streaming_start\n"); | |
652 | |
653 return 1; | |
654 } | |
655 | |
656 | |
657 | |
658 | |
659 static int dvb_open(stream_t *stream, int mode, void *opts, int *file_format) | |
660 { | |
661 // I don't force the file format bacause, although it's almost always TS, | |
662 // there are some providers that stream an IP multicast with M$ Mpeg4 inside | |
663 struct stream_priv_s* p = (struct stream_priv_s*)opts; | |
664 dvb_priv_t *priv; | |
665 char *progname; | |
21241
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
666 int tuner_type = 0, i; |
19296 | 667 |
668 | |
669 if(mode != STREAM_READ) | |
670 return STREAM_UNSUPORTED; | |
671 | |
23629 | 672 stream->priv = calloc(1, sizeof(dvb_priv_t)); |
19296 | 673 if(stream->priv == NULL) |
674 return STREAM_ERROR; | |
675 | |
676 priv = (dvb_priv_t *)stream->priv; | |
677 priv->stream = stream; | |
678 dvb_config = dvb_get_config(); | |
679 if(dvb_config == NULL) | |
680 { | |
681 free(priv); | |
682 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB CONFIGURATION IS EMPTY, exit\n"); | |
683 return STREAM_ERROR; | |
684 } | |
685 dvb_config->priv = priv; | |
686 priv->config = dvb_config; | |
687 | |
21241
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
688 priv->card = -1; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
689 for(i=0; i<priv->config->count; i++) |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
690 { |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
691 if(priv->config->cards[i].devno+1 == p->card) |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
692 { |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
693 priv->card = i; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
694 break; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
695 } |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
696 } |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
697 |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
698 if(priv->card == -1) |
19296 | 699 { |
700 free(priv); | |
701 mp_msg(MSGT_DEMUX, MSGL_ERR, "NO CONFIGURATION FOUND FOR CARD N. %d, exit\n", p->card); | |
702 return STREAM_ERROR; | |
703 } | |
704 priv->timeout = p->timeout; | |
705 | |
706 tuner_type = priv->config->cards[priv->card].type; | |
707 | |
708 if(tuner_type == 0) | |
709 { | |
710 free(priv); | |
711 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n"); | |
712 return STREAM_ERROR; | |
713 } | |
714 | |
715 | |
716 priv->tuner_type = tuner_type; | |
717 | |
718 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: prog=%s, card=%d, type=%d, vid=%d, aid=%d\n", | |
719 p->prog, priv->card+1, priv->tuner_type, p->vid, p->aid); | |
720 | |
721 priv->list = priv->config->cards[priv->card].list; | |
722 | |
723 if((! strcmp(p->prog, "")) && (priv->list != NULL)) | |
724 progname = priv->list->channels[0].name; | |
725 else | |
726 progname = p->prog; | |
727 | |
728 | |
729 if(! dvb_streaming_start(priv, p, tuner_type, progname)) | |
730 { | |
731 free(stream->priv); | |
732 stream->priv = NULL; | |
733 return STREAM_ERROR; | |
734 } | |
735 | |
736 stream->type = STREAMTYPE_DVB; | |
737 stream->fill_buffer = dvb_streaming_read; | |
738 stream->close = dvbin_close; | |
739 m_struct_free(&stream_opts, opts); | |
740 | |
741 *file_format = DEMUXER_TYPE_MPEG_TS; | |
742 | |
743 return STREAM_OK; | |
744 } | |
745 | |
746 #define MAX_CARDS 4 | |
747 dvb_config_t *dvb_get_config(void) | |
748 { | |
749 int i, fd, type, size; | |
750 char filename[30], *conf_file, *name; | |
751 dvb_channels_list *list; | |
752 dvb_card_config_t *cards = NULL, *tmp; | |
753 dvb_config_t *conf = NULL; | |
754 | |
755 if(dvb_config != NULL) | |
756 return dvb_config; | |
757 | |
23629 | 758 conf = malloc(sizeof(dvb_config_t)); |
19296 | 759 if(conf == NULL) |
760 return NULL; | |
761 | |
762 conf->priv = NULL; | |
763 conf->count = 0; | |
764 conf->cards = NULL; | |
765 for(i=0; i<MAX_CARDS; i++) | |
766 { | |
22402
963d93b2fe7c
replaced 2 instances of sprintf() with snprintf() and one instance
nicodvb
parents:
21977
diff
changeset
|
767 snprintf(filename, sizeof(filename), "/dev/dvb/adapter%d/frontend0", i); |
21834
8d486fd6cf2f
in dvb_get_config() open the frontend in READ_ONLY mode for probing (worksaround some buggy driver)
nicodvb
parents:
21814
diff
changeset
|
768 fd = open(filename, O_RDONLY|O_NONBLOCK); |
19296 | 769 if(fd < 0) |
770 { | |
771 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't open device %s, skipping\n", filename); | |
772 continue; | |
773 } | |
774 | |
775 type = dvb_get_tuner_type(fd); | |
776 close(fd); | |
777 if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC) | |
778 { | |
779 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't detect tuner type of card %d, skipping\n", i); | |
780 continue; | |
781 } | |
782 | |
783 switch(type) | |
784 { | |
785 case TUNER_TER: | |
786 conf_file = get_path("channels.conf.ter"); | |
787 break; | |
788 case TUNER_CBL: | |
789 conf_file = get_path("channels.conf.cbl"); | |
790 break; | |
791 case TUNER_SAT: | |
792 conf_file = get_path("channels.conf.sat"); | |
793 break; | |
794 case TUNER_ATSC: | |
795 conf_file = get_path("channels.conf.atsc"); | |
796 break; | |
797 } | |
798 | |
799 if((access(conf_file, F_OK | R_OK) != 0)) | |
800 conf_file = get_path("channels.conf"); | |
801 | |
802 list = dvb_get_channels(conf_file, type); | |
803 if(list == NULL) | |
804 continue; | |
805 | |
806 size = sizeof(dvb_card_config_t) * (conf->count + 1); | |
807 tmp = realloc(conf->cards, size); | |
808 | |
809 if(tmp == NULL) | |
810 { | |
811 fprintf(stderr, "DVB_CONFIG, can't realloc %d bytes, skipping\n", size); | |
812 continue; | |
813 } | |
814 cards = tmp; | |
815 | |
23629 | 816 name = malloc(20); |
19296 | 817 if(name==NULL) |
818 { | |
819 fprintf(stderr, "DVB_CONFIG, can't realloc 20 bytes, skipping\n"); | |
820 continue; | |
821 } | |
822 | |
823 conf->cards = cards; | |
824 conf->cards[conf->count].devno = i; | |
825 conf->cards[conf->count].list = list; | |
826 conf->cards[conf->count].type = type; | |
22402
963d93b2fe7c
replaced 2 instances of sprintf() with snprintf() and one instance
nicodvb
parents:
21977
diff
changeset
|
827 snprintf(name, 20, "DVB-%c card n. %d", type==TUNER_TER ? 'T' : (type==TUNER_CBL ? 'C' : 'S'), conf->count+1); |
19296 | 828 conf->cards[conf->count].name = name; |
829 conf->count++; | |
830 } | |
831 | |
832 if(conf->count == 0) | |
833 { | |
834 free(conf); | |
835 conf = NULL; | |
836 } | |
837 | |
838 dvb_config = conf; | |
839 return conf; | |
840 } | |
841 | |
842 | |
843 | |
844 stream_info_t stream_info_dvb = { | |
845 "Dvb Input", | |
846 "dvbin", | |
847 "Nico", | |
848 "based on the code from ??? (probably Arpi)", | |
849 dvb_open, | |
850 { "dvb", NULL }, | |
851 &stream_opts, | |
852 1 // Urls are an option string | |
853 }; |