Get rid of nonsensical limits on -geometry x, y,w and h values, they only
[mplayer/glamo.git] / stream / stream_dvb.c
blobd2c5b4b06ecdc8f6a3def7ad2a0fc7115d305135
1 /*
3 dvbstream
4 (C) Dave Chapman <dave@dchapman.com> 2001, 2002.
6 The latest version can be found at http://www.linuxstb.org/dvbstream
8 Modified for use with MPlayer, for details see the changelog at
9 http://svn.mplayerhq.hu/mplayer/trunk/
10 $Id$
12 Copyright notice:
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
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 <poll.h>
38 #include <unistd.h>
39 #include <fcntl.h>
40 #include <errno.h>
42 #include "stream.h"
43 #include "libmpdemux/demuxer.h"
44 #include "help_mp.h"
45 #include "m_option.h"
46 #include "m_struct.h"
47 #include "get_path.h"
48 #include "libavutil/avstring.h"
50 #include "dvbin.h"
53 #define MAX_CHANNELS 8
54 #define CHANNEL_LINE_LEN 256
55 #define min(a, b) ((a) <= (b) ? (a) : (b))
58 //TODO: CAMBIARE list_ptr e da globale a per_priv
61 static struct stream_priv_s
63 char *prog;
64 int card;
65 int timeout;
66 char *file;
68 stream_defaults =
70 "", 1, 30, NULL
73 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s, f)
75 /// URL definition
76 static const m_option_t stream_params[] = {
77 {"prog", ST_OFF(prog), CONF_TYPE_STRING, 0, 0 ,0, NULL},
78 {"card", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
79 {"timeout",ST_OFF(timeout), CONF_TYPE_INT, M_OPT_RANGE, 1, 30, NULL},
80 {"file", ST_OFF(file), CONF_TYPE_STRING, 0, 0 ,0, NULL},
82 {"hostname", ST_OFF(prog), CONF_TYPE_STRING, 0, 0, 0, NULL },
83 {"username", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
84 {NULL, NULL, 0, 0, 0, 0, NULL}
87 static const struct m_struct_st stream_opts = {
88 "dvbin",
89 sizeof(struct stream_priv_s),
90 &stream_defaults,
91 stream_params
96 const m_option_t dvbin_opts_conf[] = {
97 {"prog", &stream_defaults.prog, CONF_TYPE_STRING, 0, 0 ,0, NULL},
98 {"card", &stream_defaults.card, CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
99 {"timeout", &stream_defaults.timeout, CONF_TYPE_INT, M_OPT_RANGE, 1, 30, NULL},
100 {"file", &stream_defaults.file, CONF_TYPE_STRING, 0, 0 ,0, NULL},
102 {NULL, NULL, 0, 0, 0, 0, NULL}
108 int dvb_set_ts_filt(int fd, uint16_t pid, dmx_pes_type_t pestype);
109 int dvb_demux_stop(int fd);
110 int dvb_get_tuner_type(int fd);
111 int dvb_open_devices(dvb_priv_t *priv, int n, int demux_cnt);
112 int dvb_fix_demuxes(dvb_priv_t *priv, int cnt);
114 int dvb_tune(dvb_priv_t *priv, int freq, char pol, int srate, int diseqc, int tone,
115 fe_spectral_inversion_t specInv, fe_modulation_t modulation, fe_guard_interval_t guardInterval,
116 fe_transmit_mode_t TransmissionMode, fe_bandwidth_t bandWidth, fe_code_rate_t HP_CodeRate,
117 fe_code_rate_t LP_CodeRate, fe_hierarchy_t hier, int timeout);
121 static dvb_channels_list *dvb_get_channels(char *filename, int type)
123 dvb_channels_list *list;
124 FILE *f;
125 char line[CHANNEL_LINE_LEN], *colon;
127 int fields, cnt, pcnt, k;
128 int has8192, has0;
129 dvb_channel_t *ptr, *tmp, chn;
130 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];
131 const char *cbl_conf = "%d:%255[^:]:%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n";
132 const char *sat_conf = "%d:%c:%d:%d:%255[^:]:%255[^:]\n";
133 const char *ter_conf = "%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n";
134 const char *atsc_conf = "%d:%255[^:]:%255[^:]:%255[^:]\n";
136 mp_msg(MSGT_DEMUX, MSGL_V, "CONFIG_READ FILE: %s, type: %d\n", filename, type);
137 if((f=fopen(filename, "r"))==NULL)
139 mp_msg(MSGT_DEMUX, MSGL_FATAL, "CAN'T READ CONFIG FILE %s\n", filename);
140 return NULL;
143 list = malloc(sizeof(dvb_channels_list));
144 if(list == NULL)
146 fclose(f);
147 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: couldn't malloc enough memory\n");
148 return NULL;
151 ptr = &chn;
152 list->NUM_CHANNELS = 0;
153 list->channels = NULL;
154 while(! feof(f))
156 if( fgets(line, CHANNEL_LINE_LEN, f) == NULL )
157 continue;
159 if((line[0] == '#') || (strlen(line) == 0))
160 continue;
162 colon = strchr(line, ':');
163 if(colon)
165 k = colon - line;
166 if(!k)
167 continue;
168 ptr->name = malloc(k+1);
169 if(! ptr->name)
170 continue;
171 av_strlcpy(ptr->name, line, k+1);
173 else
174 continue;
175 k++;
176 apid_str[0] = vpid_str[0] = 0;
177 ptr->pids_cnt = 0;
178 ptr->freq = 0;
179 if(type == TUNER_TER)
181 fields = sscanf(&line[k], ter_conf,
182 &ptr->freq, inv, bw, cr, tmp_lcr, mod,
183 transm, gi, tmp_hier, vpid_str, apid_str);
184 mp_msg(MSGT_DEMUX, MSGL_V,
185 "TER, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d",
186 list->NUM_CHANNELS, fields, ptr->name, ptr->freq);
188 else if(type == TUNER_CBL)
190 fields = sscanf(&line[k], cbl_conf,
191 &ptr->freq, inv, &ptr->srate,
192 cr, mod, vpid_str, apid_str);
193 mp_msg(MSGT_DEMUX, MSGL_V,
194 "CBL, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d",
195 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate);
197 #ifdef DVB_ATSC
198 else if(type == TUNER_ATSC)
200 fields = sscanf(&line[k], atsc_conf,
201 &ptr->freq, mod, vpid_str, apid_str);
202 mp_msg(MSGT_DEMUX, MSGL_V,
203 "ATSC, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d\n",
204 list->NUM_CHANNELS, fields, ptr->name, ptr->freq);
206 #endif
207 else //SATELLITE
209 fields = sscanf(&line[k], sat_conf,
210 &ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, vpid_str, apid_str);
211 ptr->pol = toupper(ptr->pol);
212 ptr->freq *= 1000UL;
213 ptr->srate *= 1000UL;
214 ptr->tone = -1;
215 ptr->inv = INVERSION_AUTO;
216 ptr->cr = FEC_AUTO;
217 if((ptr->diseqc > 4) || (ptr->diseqc < 0))
218 continue;
219 if(ptr->diseqc > 0)
220 ptr->diseqc--;
221 mp_msg(MSGT_DEMUX, MSGL_V,
222 "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d",
223 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc);
226 if(vpid_str[0])
228 pcnt = sscanf(vpid_str, "%d+%d+%d+%d+%d+%d+%d", &ptr->pids[0], &ptr->pids[1], &ptr->pids[2], &ptr->pids[3],
229 &ptr->pids[4], &ptr->pids[5], &ptr->pids[6]);
230 if(pcnt > 0)
232 ptr->pids_cnt = pcnt;
233 fields++;
237 if(apid_str[0])
239 cnt = ptr->pids_cnt;
240 pcnt = sscanf(apid_str, "%d+%d+%d+%d+%d+%d+%d+%d", &ptr->pids[cnt], &ptr->pids[cnt+1], &ptr->pids[cnt+2],
241 &ptr->pids[cnt+3], &ptr->pids[cnt+4], &ptr->pids[cnt+5], &ptr->pids[cnt+6], &ptr->pids[cnt+7]);
242 if(pcnt > 0)
244 ptr->pids_cnt += pcnt;
245 fields++;
249 if((fields < 2) || (ptr->pids_cnt <= 0) || (ptr->freq == 0) || (strlen(ptr->name) == 0))
250 continue;
252 has8192 = has0 = 0;
253 for(cnt = 0; cnt < ptr->pids_cnt; cnt++)
255 if(ptr->pids[cnt] == 8192)
256 has8192 = 1;
257 if(ptr->pids[cnt] == 0)
258 has0 = 1;
260 if(has8192)
262 ptr->pids[0] = 8192;
263 ptr->pids_cnt = 1;
265 else if(! has0)
267 ptr->pids[ptr->pids_cnt] = 0; //PID 0 is the PAT
268 ptr->pids_cnt++;
270 mp_msg(MSGT_DEMUX, MSGL_V, " PIDS: ");
271 for(cnt = 0; cnt < ptr->pids_cnt; cnt++)
272 mp_msg(MSGT_DEMUX, MSGL_V, " %d ", ptr->pids[cnt]);
273 mp_msg(MSGT_DEMUX, MSGL_V, "\n");
275 if((type == TUNER_TER) || (type == TUNER_CBL))
277 if(! strcmp(inv, "INVERSION_ON"))
278 ptr->inv = INVERSION_ON;
279 else if(! strcmp(inv, "INVERSION_OFF"))
280 ptr->inv = INVERSION_OFF;
281 else
282 ptr->inv = INVERSION_AUTO;
285 if(! strcmp(cr, "FEC_1_2"))
286 ptr->cr =FEC_1_2;
287 else if(! strcmp(cr, "FEC_2_3"))
288 ptr->cr =FEC_2_3;
289 else if(! strcmp(cr, "FEC_3_4"))
290 ptr->cr =FEC_3_4;
291 #ifdef CONFIG_DVB_HEAD
292 else if(! strcmp(cr, "FEC_4_5"))
293 ptr->cr =FEC_4_5;
294 else if(! strcmp(cr, "FEC_6_7"))
295 ptr->cr =FEC_6_7;
296 else if(! strcmp(cr, "FEC_8_9"))
297 ptr->cr =FEC_8_9;
298 #endif
299 else if(! strcmp(cr, "FEC_5_6"))
300 ptr->cr =FEC_5_6;
301 else if(! strcmp(cr, "FEC_7_8"))
302 ptr->cr =FEC_7_8;
303 else if(! strcmp(cr, "FEC_NONE"))
304 ptr->cr =FEC_NONE;
305 else ptr->cr =FEC_AUTO;
309 if((type == TUNER_TER) || (type == TUNER_CBL) || (type == TUNER_ATSC))
311 if(! strcmp(mod, "QAM_128"))
312 ptr->mod = QAM_128;
313 else if(! strcmp(mod, "QAM_256"))
314 ptr->mod = QAM_256;
315 else if(! strcmp(mod, "QAM_64"))
316 ptr->mod = QAM_64;
317 else if(! strcmp(mod, "QAM_32"))
318 ptr->mod = QAM_32;
319 else if(! strcmp(mod, "QAM_16"))
320 ptr->mod = QAM_16;
321 #ifdef DVB_ATSC
322 else if(! strcmp(mod, "VSB_8") || ! strcmp(mod, "8VSB"))
323 ptr->mod = VSB_8;
324 else if(! strcmp(mod, "VSB_16") || !strcmp(mod, "16VSB"))
325 ptr->mod = VSB_16;
327 ptr->inv = INVERSION_AUTO;
328 #endif
331 if(type == TUNER_TER)
333 if(! strcmp(bw, "BANDWIDTH_6_MHZ"))
334 ptr->bw = BANDWIDTH_6_MHZ;
335 else if(! strcmp(bw, "BANDWIDTH_7_MHZ"))
336 ptr->bw = BANDWIDTH_7_MHZ;
337 else if(! strcmp(bw, "BANDWIDTH_8_MHZ"))
338 ptr->bw = BANDWIDTH_8_MHZ;
341 if(! strcmp(transm, "TRANSMISSION_MODE_2K"))
342 ptr->trans = TRANSMISSION_MODE_2K;
343 else if(! strcmp(transm, "TRANSMISSION_MODE_8K"))
344 ptr->trans = TRANSMISSION_MODE_8K;
347 if(! strcmp(gi, "GUARD_INTERVAL_1_32"))
348 ptr->gi = GUARD_INTERVAL_1_32;
349 else if(! strcmp(gi, "GUARD_INTERVAL_1_16"))
350 ptr->gi = GUARD_INTERVAL_1_16;
351 else if(! strcmp(gi, "GUARD_INTERVAL_1_8"))
352 ptr->gi = GUARD_INTERVAL_1_8;
353 else ptr->gi = GUARD_INTERVAL_1_4;
355 if(! strcmp(tmp_lcr, "FEC_1_2"))
356 ptr->cr_lp =FEC_1_2;
357 else if(! strcmp(tmp_lcr, "FEC_2_3"))
358 ptr->cr_lp =FEC_2_3;
359 else if(! strcmp(tmp_lcr, "FEC_3_4"))
360 ptr->cr_lp =FEC_3_4;
361 #ifdef CONFIG_DVB_HEAD
362 else if(! strcmp(tmp_lcr, "FEC_4_5"))
363 ptr->cr_lp =FEC_4_5;
364 else if(! strcmp(tmp_lcr, "FEC_6_7"))
365 ptr->cr_lp =FEC_6_7;
366 else if(! strcmp(tmp_lcr, "FEC_8_9"))
367 ptr->cr_lp =FEC_8_9;
368 #endif
369 else if(! strcmp(tmp_lcr, "FEC_5_6"))
370 ptr->cr_lp =FEC_5_6;
371 else if(! strcmp(tmp_lcr, "FEC_7_8"))
372 ptr->cr_lp =FEC_7_8;
373 else if(! strcmp(tmp_lcr, "FEC_NONE"))
374 ptr->cr_lp =FEC_NONE;
375 else ptr->cr_lp =FEC_AUTO;
378 if(! strcmp(tmp_hier, "HIERARCHY_1"))
379 ptr->hier = HIERARCHY_1;
380 else if(! strcmp(tmp_hier, "HIERARCHY_2"))
381 ptr->hier = HIERARCHY_2;
382 else if(! strcmp(tmp_hier, "HIERARCHY_4"))
383 ptr->hier = HIERARCHY_4;
384 #ifdef CONFIG_DVB_HEAD
385 else if(! strcmp(tmp_hier, "HIERARCHY_AUTO"))
386 ptr->hier = HIERARCHY_AUTO;
387 #endif
388 else ptr->hier = HIERARCHY_NONE;
391 tmp = realloc(list->channels, sizeof(dvb_channel_t) * (list->NUM_CHANNELS + 1));
392 if(tmp == NULL)
393 break;
395 list->channels = tmp;
396 memcpy(&(list->channels[list->NUM_CHANNELS]), ptr, sizeof(dvb_channel_t));
397 list->NUM_CHANNELS++;
398 if(sizeof(dvb_channel_t) * list->NUM_CHANNELS >= 1024*1024)
400 mp_msg(MSGT_DEMUX, MSGL_V, "dvbin.c, > 1MB allocated for channels struct, dropping the rest of the file\r\n");
401 break;
405 fclose(f);
406 if(list->NUM_CHANNELS == 0)
408 if(list->channels != NULL)
409 free(list->channels);
410 free(list);
411 return NULL;
414 list->current = 0;
415 return list;
418 void dvb_free_config(dvb_config_t *config)
420 int i, j;
422 for(i=0; i<config->count; i++)
424 if(config->cards[i].name)
425 free(config->cards[i].name);
426 if(!config->cards[i].list)
427 continue;
428 if(config->cards[i].list->channels)
430 for(j=0; j<config->cards[i].list->NUM_CHANNELS; j++)
432 if(config->cards[i].list->channels[j].name)
433 free(config->cards[i].list->channels[j].name);
435 free(config->cards[i].list->channels);
437 free(config->cards[i].list);
439 free(config);
442 static int dvb_streaming_read(stream_t *stream, char *buffer, int size)
444 struct pollfd pfds[1];
445 int pos=0, tries, rk, fd;
446 dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
448 mp_msg(MSGT_DEMUX, MSGL_DBG3, "dvb_streaming_read(%d)\n", size);
450 tries = priv->retry + 1;
452 fd = stream->fd;
453 while(pos < size)
455 pfds[0].fd = fd;
456 pfds[0].events = POLLIN | POLLPRI;
458 rk = size - pos;
459 if(poll(pfds, 1, 500) <= 0)
461 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);
462 errno = 0;
463 if(--tries > 0)
464 continue;
465 else
466 break;
468 if((rk = read(fd, &buffer[pos], rk)) > 0)
470 pos += rk;
471 mp_msg(MSGT_DEMUX, MSGL_DBG3, "ret (%d) bytes\n", pos);
476 if(! pos)
477 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, return %d bytes\n", pos);
479 return pos;
482 static void dvbin_close(stream_t *stream);
484 int dvb_set_channel(stream_t *stream, int card, int n)
486 dvb_channels_list *new_list;
487 dvb_channel_t *channel;
488 dvb_priv_t *priv = stream->priv;
489 char buf[4096];
490 dvb_config_t *conf = (dvb_config_t *) priv->config;
491 int devno;
492 int i;
494 if((card < 0) || (card > conf->count))
496 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CARD NUMBER: %d vs %d, abort\n", card, conf->count);
497 return 0;
500 devno = conf->cards[card].devno;
501 new_list = conf->cards[card].list;
502 if((n > new_list->NUM_CHANNELS) || (n < 0))
504 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, for card %d, abort\n", n, card);
505 return 0;
507 channel = &(new_list->channels[n]);
509 if(priv->is_on) //the fds are already open and we have to stop the demuxers
511 for(i = 0; i < priv->demux_fds_cnt; i++)
512 dvb_demux_stop(priv->demux_fds[i]);
514 priv->retry = 0;
515 while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer
516 if(priv->card != card)
518 dvbin_close(stream);
519 if(! dvb_open_devices(priv, devno, channel->pids_cnt))
521 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card);
522 return 0;
525 else //close all demux_fds with pos > pids required for the new channel or open other demux_fds if we have too few
527 if(! dvb_fix_demuxes(priv, channel->pids_cnt))
528 return 0;
531 else
533 if(! dvb_open_devices(priv, devno, channel->pids_cnt))
535 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL2, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card);
536 return 0;
540 priv->card = card;
541 priv->list = new_list;
542 priv->retry = 5;
543 new_list->current = n;
544 stream->fd = priv->dvr_fd;
545 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: new channel name=%s, card: %d, channel %d\n", channel->name, card, n);
547 stream->eof=1;
548 stream_reset(stream);
551 if(channel->freq != priv->last_freq)
552 if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone,
553 channel->inv, channel->mod, channel->gi, channel->trans, channel->bw, channel->cr, channel->cr_lp, channel->hier, priv->timeout))
554 return 0;
556 priv->last_freq = channel->freq;
557 priv->is_on = 1;
559 //sets demux filters and restart the stream
560 for(i = 0; i < channel->pids_cnt; i++)
562 if(! dvb_set_ts_filt(priv->demux_fds[i], channel->pids[i], DMX_PES_OTHER))
563 return 0;
566 return 1;
571 int dvb_step_channel(stream_t *stream, int dir)
573 int new_current;
574 dvb_channels_list *list;
575 dvb_priv_t *priv = stream->priv;
577 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_STEP_CHANNEL dir %d\n", dir);
579 if(priv == NULL)
581 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL priv_ptr, quit\n");
582 return 0;
585 list = priv->list;
586 if(list == NULL)
588 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL list_ptr, quit\n");
589 return 0;
592 new_current = (list->NUM_CHANNELS + list->current + (dir == DVB_CHANNEL_HIGHER ? 1 : -1)) % list->NUM_CHANNELS;
594 return dvb_set_channel(stream, priv->card, new_current);
600 static void dvbin_close(stream_t *stream)
602 int i;
603 dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
605 for(i = priv->demux_fds_cnt-1; i >= 0; i--)
607 priv->demux_fds_cnt--;
608 mp_msg(MSGT_DEMUX, MSGL_V, "DVBIN_CLOSE, close(%d), fd=%d, COUNT=%d\n", i, priv->demux_fds[i], priv->demux_fds_cnt);
609 close(priv->demux_fds[i]);
611 close(priv->dvr_fd);
613 close(priv->fe_fd);
614 #ifndef CONFIG_DVB_HEAD
615 close(priv->sec_fd);
616 #endif
617 priv->fe_fd = priv->sec_fd = priv->dvr_fd = -1;
619 priv->is_on = 0;
620 dvb_free_config(priv->config);
624 static int dvb_streaming_start(stream_t *stream, struct stream_priv_s *opts, int tuner_type, char *progname)
626 int i;
627 dvb_channel_t *channel = NULL;
628 dvb_priv_t *priv = stream->priv;
630 mp_msg(MSGT_DEMUX, MSGL_V, "\r\ndvb_streaming_start(PROG: %s, CARD: %d, FILE: %s)\r\n",
631 opts->prog, opts->card, opts->file);
633 priv->is_on = 0;
635 i = 0;
636 while((channel == NULL) && i < priv->list->NUM_CHANNELS)
638 if(! strcmp(priv->list->channels[i].name, progname))
639 channel = &(priv->list->channels[i]);
641 i++;
644 if(channel != NULL)
646 priv->list->current = i-1;
647 mp_msg(MSGT_DEMUX, MSGL_V, "PROGRAM NUMBER %d: name=%s, freq=%u\n", i-1, channel->name, channel->freq);
649 else
651 mp_msg(MSGT_DEMUX, MSGL_ERR, "\n\nDVBIN: no such channel \"%s\"\n\n", progname);
652 return 0;
656 if(!dvb_set_channel(stream, priv->card, priv->list->current))
658 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR, COULDN'T SET CHANNEL %i: ", priv->list->current);
659 dvbin_close(stream);
660 return 0;
663 mp_msg(MSGT_DEMUX, MSGL_V, "SUCCESSFUL EXIT from dvb_streaming_start\n");
665 return 1;
671 static int dvb_open(stream_t *stream, int mode, void *opts, int *file_format)
673 // I don't force the file format bacause, although it's almost always TS,
674 // there are some providers that stream an IP multicast with M$ Mpeg4 inside
675 struct stream_priv_s* p = (struct stream_priv_s*)opts;
676 dvb_priv_t *priv;
677 char *progname;
678 int tuner_type = 0, i;
681 if(mode != STREAM_READ)
682 return STREAM_UNSUPPORTED;
684 stream->priv = calloc(1, sizeof(dvb_priv_t));
685 if(stream->priv == NULL)
686 return STREAM_ERROR;
688 priv = (dvb_priv_t *)stream->priv;
689 priv->fe_fd = priv->sec_fd = priv->dvr_fd = -1;
690 priv->config = dvb_get_config();
691 if(priv->config == NULL)
693 free(priv);
694 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB CONFIGURATION IS EMPTY, exit\n");
695 return STREAM_ERROR;
698 priv->card = -1;
699 for(i=0; i<priv->config->count; i++)
701 if(priv->config->cards[i].devno+1 == p->card)
703 priv->card = i;
704 break;
708 if(priv->card == -1)
710 free(priv);
711 mp_msg(MSGT_DEMUX, MSGL_ERR, "NO CONFIGURATION FOUND FOR CARD N. %d, exit\n", p->card);
712 return STREAM_ERROR;
714 priv->timeout = p->timeout;
716 tuner_type = priv->config->cards[priv->card].type;
718 if(tuner_type == 0)
720 free(priv);
721 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n");
722 return STREAM_ERROR;
726 priv->tuner_type = tuner_type;
728 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: prog=%s, card=%d, type=%d\n",
729 p->prog, priv->card+1, priv->tuner_type);
731 priv->list = priv->config->cards[priv->card].list;
733 if((! strcmp(p->prog, "")) && (priv->list != NULL))
734 progname = priv->list->channels[0].name;
735 else
736 progname = p->prog;
739 if(! dvb_streaming_start(stream, p, tuner_type, progname))
741 free(stream->priv);
742 stream->priv = NULL;
743 return STREAM_ERROR;
746 stream->type = STREAMTYPE_DVB;
747 stream->fill_buffer = dvb_streaming_read;
748 stream->close = dvbin_close;
749 m_struct_free(&stream_opts, opts);
751 *file_format = DEMUXER_TYPE_MPEG_TS;
753 return STREAM_OK;
756 #define MAX_CARDS 4
757 dvb_config_t *dvb_get_config(void)
759 int i, fd, type, size;
760 char filename[30], *conf_file, *name;
761 dvb_channels_list *list;
762 dvb_card_config_t *cards = NULL, *tmp;
763 dvb_config_t *conf = NULL;
766 conf = malloc(sizeof(dvb_config_t));
767 if(conf == NULL)
768 return NULL;
770 conf->priv = NULL;
771 conf->count = 0;
772 conf->cards = NULL;
773 for(i=0; i<MAX_CARDS; i++)
775 snprintf(filename, sizeof(filename), "/dev/dvb/adapter%d/frontend0", i);
776 fd = open(filename, O_RDONLY|O_NONBLOCK);
777 if(fd < 0)
779 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't open device %s, skipping\n", filename);
780 continue;
783 type = dvb_get_tuner_type(fd);
784 close(fd);
785 if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC)
787 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't detect tuner type of card %d, skipping\n", i);
788 continue;
791 switch(type)
793 case TUNER_TER:
794 conf_file = get_path("channels.conf.ter");
795 break;
796 case TUNER_CBL:
797 conf_file = get_path("channels.conf.cbl");
798 break;
799 case TUNER_SAT:
800 conf_file = get_path("channels.conf.sat");
801 break;
802 case TUNER_ATSC:
803 conf_file = get_path("channels.conf.atsc");
804 break;
807 if((access(conf_file, F_OK | R_OK) != 0))
809 if(conf_file)
810 free(conf_file);
811 conf_file = get_path("channels.conf");
812 if((access(conf_file, F_OK | R_OK) != 0))
814 if(conf_file)
815 free(conf_file);
816 conf_file = strdup(MPLAYER_CONFDIR "/channels.conf");
820 list = dvb_get_channels(conf_file, type);
821 if(conf_file)
822 free(conf_file);
823 if(list == NULL)
824 continue;
826 size = sizeof(dvb_card_config_t) * (conf->count + 1);
827 tmp = realloc(conf->cards, size);
829 if(tmp == NULL)
831 fprintf(stderr, "DVB_CONFIG, can't realloc %d bytes, skipping\n", size);
832 continue;
834 cards = tmp;
836 name = malloc(20);
837 if(name==NULL)
839 fprintf(stderr, "DVB_CONFIG, can't realloc 20 bytes, skipping\n");
840 continue;
843 conf->cards = cards;
844 conf->cards[conf->count].devno = i;
845 conf->cards[conf->count].list = list;
846 conf->cards[conf->count].type = type;
847 snprintf(name, 20, "DVB-%c card n. %d", type==TUNER_TER ? 'T' : (type==TUNER_CBL ? 'C' : 'S'), conf->count+1);
848 conf->cards[conf->count].name = name;
849 conf->count++;
852 if(conf->count == 0)
854 free(conf);
855 conf = NULL;
858 return conf;
863 const stream_info_t stream_info_dvb = {
864 "Dvb Input",
865 "dvbin",
866 "Nico",
867 "based on the code from ??? (probably Arpi)",
868 dvb_open,
869 { "dvb", NULL },
870 &stream_opts,
871 1 // Urls are an option string