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