9610
|
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 Copyright notice:
|
|
9
|
|
10 This program is free software; you can redistribute it and/or modify
|
|
11 it under the terms of the GNU General Public License as published by
|
|
12 the Free Software Foundation; either version 2 of the License, or
|
|
13 (at your option) any later version.
|
|
14
|
|
15 This program is distributed in the hope that it will be useful,
|
|
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 GNU General Public License for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with this program; if not, write to the Free Software
|
|
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
23
|
|
24 */
|
|
25
|
10560
|
26 #include "config.h"
|
9610
|
27 #include <stdio.h>
|
|
28 #include <stdlib.h>
|
|
29 #include <string.h>
|
|
30 #include <ctype.h>
|
|
31 #include <sys/ioctl.h>
|
|
32 #include <sys/time.h>
|
|
33 #include <sys/poll.h>
|
10560
|
34 #include <unistd.h>
|
9610
|
35 #include <fcntl.h>
|
|
36 #include <string.h>
|
|
37 #include <errno.h>
|
|
38 #include <fcntl.h>
|
|
39
|
|
40 #include "stream.h"
|
|
41 #include "demuxer.h"
|
10560
|
42 #include "help_mp.h"
|
|
43 #include "../m_option.h"
|
|
44 #include "../m_struct.h"
|
9610
|
45
|
|
46 #include "dvbin.h"
|
|
47
|
|
48
|
|
49 #define MAX_CHANNELS 8
|
10560
|
50 #define CHANNEL_LINE_LEN 256
|
9610
|
51 #define min(a, b) ((a) <= (b) ? (a) : (b))
|
|
52
|
10560
|
53
|
|
54 //TODO: CAMBIARE list_ptr e da globale a per_priv
|
|
55
|
|
56
|
|
57 static struct stream_priv_s
|
|
58 {
|
|
59 char *prog;
|
|
60 int card;
|
|
61 char *type;
|
|
62 int vid, aid;
|
|
63 char *file;
|
|
64 }
|
|
65 stream_defaults =
|
|
66 {
|
|
67 "", 1, "", 0, 0, "channels.conf"
|
|
68 };
|
|
69
|
|
70 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s, f)
|
9610
|
71
|
10560
|
72 /// URL definition
|
|
73 static m_option_t stream_params[] = {
|
|
74 {"prog", ST_OFF(prog), CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
75 {"card", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
|
|
76 {"type", ST_OFF(type), CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
77 {"vid", ST_OFF(vid), CONF_TYPE_INT, 0, 0 ,0, NULL},
|
|
78 {"aid", ST_OFF(aid), CONF_TYPE_INT, 0, 0 ,0, NULL},
|
|
79 {"file", ST_OFF(file), CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
80
|
|
81 {"hostname", ST_OFF(prog), CONF_TYPE_STRING, 0, 0, 0, NULL },
|
|
82 {"filename", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
|
|
83 {NULL, NULL, 0, 0, 0, 0, NULL}
|
|
84 };
|
|
85
|
|
86 static struct m_struct_st stream_opts = {
|
|
87 "dvbin",
|
|
88 sizeof(struct stream_priv_s),
|
|
89 &stream_defaults,
|
|
90 stream_params
|
9610
|
91 };
|
|
92
|
|
93
|
10560
|
94
|
|
95 m_option_t dvbin_opts_conf[] = {
|
|
96 {"prog", &stream_defaults.prog, CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
97 {"card", &stream_defaults.card, CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL},
|
|
98 {"type", &stream_defaults.type, CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
99 {"vid", &stream_defaults.vid, CONF_TYPE_INT, 0, 0 ,0, NULL},
|
|
100 {"aid", &stream_defaults.aid, CONF_TYPE_INT, 0, 0 ,0, NULL},
|
|
101 {"file", &stream_defaults.file, CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
9610
|
102
|
10560
|
103 {NULL, NULL, 0, 0, 0, 0, NULL}
|
|
104 };
|
|
105
|
|
106
|
|
107
|
|
108
|
|
109 extern int dvb_set_ts_filt(int fd, uint16_t pid, dmx_pes_type_t pestype);
|
|
110 extern int dvb_demux_stop(int fd);
|
|
111 extern int dvb_get_tuner_type(dvb_priv_t *priv);
|
|
112
|
9610
|
113 extern int dvb_tune(dvb_priv_t *priv, int freq, char pol, int srate, int diseqc, int tone,
|
|
114 fe_spectral_inversion_t specInv, fe_modulation_t modulation, fe_guard_interval_t guardInterval,
|
|
115 fe_transmit_mode_t TransmissionMode, fe_bandwidth_t bandWidth, fe_code_rate_t HP_CodeRate);
|
10560
|
116 extern char *dvb_dvrdev[4], *dvb_demuxdev[4];
|
|
117
|
|
118 dvb_channels_list *dvb_list_ptr = NULL;
|
9610
|
119
|
|
120
|
10560
|
121 static dvb_channels_list *dvb_get_channels(char *filename, int type)
|
9610
|
122 {
|
|
123 dvb_channels_list *list;
|
|
124 FILE *f;
|
10560
|
125 uint8_t line[CHANNEL_LINE_LEN];
|
|
126
|
9610
|
127 int fields, row_count;
|
|
128 dvb_channel_t *ptr;
|
|
129 char *tmp_lcr, *tmp_hier, *inv, *bw, *cr, *mod, *transm, *gi;
|
11352
|
130 const char *cbl_conf = "%a[^:]:%d:%a[^:]:%d:%a[^:]:%a[^:]:%d:%d\n";
|
9610
|
131 const char *sat_conf = "%a[^:]:%d:%c:%d:%d:%d:%d:%d:%d:%d\n";
|
|
132 const char *ter_conf = "%a[^:]:%d:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%d:%d\n";
|
|
133
|
10560
|
134 if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL)
|
|
135 {
|
|
136 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: wrong tuner type, exit\n");
|
|
137 return 0;
|
|
138 }
|
|
139
|
9610
|
140 list = malloc(sizeof(dvb_channels_list));
|
|
141 if(list == NULL)
|
|
142 {
|
|
143 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: couldn't malloc enough memory\n");
|
|
144 return NULL;
|
|
145 }
|
|
146
|
10560
|
147 bzero(list, sizeof(dvb_channels_list));
|
|
148 mp_msg(MSGT_DEMUX, MSGL_V, "CONFIG_READ FILE: %s, type: %d\n", filename, type);
|
9610
|
149 if((f=fopen(filename, "r"))==NULL)
|
|
150 {
|
|
151 mp_msg(MSGT_DEMUX, MSGL_FATAL, "CAN'T READ CONFIG FILE %s\n", filename);
|
|
152 return NULL;
|
|
153 }
|
|
154
|
|
155 list->NUM_CHANNELS = 0;
|
|
156 row_count = 0;
|
|
157 while(! feof(f) && row_count < 512)
|
|
158 {
|
10708
|
159 if( fgets(line, CHANNEL_LINE_LEN, f) == NULL )
|
|
160 continue;
|
9610
|
161
|
10708
|
162 if((line[0] == '#') || (strlen(line) == 0))
|
10560
|
163 continue;
|
9610
|
164
|
10560
|
165 ptr = &(list->channels[list->NUM_CHANNELS]);
|
9610
|
166
|
10560
|
167 if(type == TUNER_TER)
|
9610
|
168 {
|
|
169 fields = sscanf(line, ter_conf,
|
10560
|
170 &ptr->name, &ptr->freq, &inv, &bw, &cr, &tmp_lcr, &mod,
|
9610
|
171 &transm, &gi, &tmp_hier, &ptr->vpid, &ptr->apid1);
|
10708
|
172 /*
|
|
173 mp_msg(MSGT_DEMUX, MSGL_V,
|
|
174 "NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, VPID: %d, APID1: %d\n",
|
|
175 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->vpid, ptr->apid1);
|
|
176 */
|
10560
|
177 }
|
|
178 else if(type == TUNER_CBL)
|
|
179 {
|
|
180 fields = sscanf(line, cbl_conf,
|
|
181 &ptr->name, &ptr->freq, &inv, &ptr->srate,
|
|
182 &cr, &mod, &ptr->vpid, &ptr->apid1);
|
10708
|
183 /*
|
|
184 mp_msg(MSGT_DEMUX, MSGL_V,
|
|
185 "NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, VPID: %d, APID1: %d\n",
|
|
186 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->vpid, ptr->apid1);
|
|
187 */
|
10560
|
188 }
|
|
189 else //SATELLITE
|
|
190 {
|
|
191 fields = sscanf(line, sat_conf,
|
|
192 &ptr->name, &ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, &ptr->vpid, &ptr->apid1,
|
|
193 &ptr->tpid, &ptr->ca, &ptr->progid);
|
|
194 ptr->pol = toupper(ptr->pol);
|
|
195 ptr->freq *= 1000UL;
|
|
196 ptr->srate *= 1000UL;
|
|
197 ptr->tone = -1;
|
|
198 mp_msg(MSGT_DEMUX, MSGL_V,
|
10708
|
199 "NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d, TONE: %d, VPID: %d, APID1: %d, APID2: %d, TPID: %d, PROGID: %d\n",
|
|
200 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc, ptr->tone, ptr->vpid, ptr->apid1, ptr->apid2, ptr->tpid, ptr->progid);
|
10560
|
201 }
|
9610
|
202
|
10560
|
203
|
10708
|
204 if(((ptr->vpid <= 0) && (ptr->apid1 <=0)) || (ptr->freq == 0))
|
|
205 continue;
|
|
206
|
|
207
|
10560
|
208 if((type == TUNER_TER) || (type == TUNER_CBL))
|
|
209 {
|
9610
|
210 if(! strcmp(inv, "INVERSION_ON"))
|
|
211 ptr->inv = INVERSION_ON;
|
|
212 else if(! strcmp(inv, "INVERSION_OFF"))
|
|
213 ptr->inv = INVERSION_OFF;
|
|
214 else
|
|
215 ptr->inv = INVERSION_AUTO;
|
|
216
|
|
217
|
|
218 if(! strcmp(cr, "FEC_1_2"))
|
|
219 ptr->cr =FEC_1_2;
|
|
220 else if(! strcmp(cr, "FEC_2_3"))
|
|
221 ptr->cr =FEC_2_3;
|
|
222 else if(! strcmp(cr, "FEC_3_4"))
|
|
223 ptr->cr =FEC_3_4;
|
|
224 #ifdef HAVE_DVB_HEAD
|
|
225 else if(! strcmp(cr, "FEC_4_5"))
|
|
226 ptr->cr =FEC_4_5;
|
|
227 else if(! strcmp(cr, "FEC_6_7"))
|
|
228 ptr->cr =FEC_6_7;
|
|
229 else if(! strcmp(cr, "FEC_8_9"))
|
|
230 ptr->cr =FEC_8_9;
|
|
231 #endif
|
|
232 else if(! strcmp(cr, "FEC_5_6"))
|
|
233 ptr->cr =FEC_5_6;
|
|
234 else if(! strcmp(cr, "FEC_7_8"))
|
|
235 ptr->cr =FEC_7_8;
|
|
236 else if(! strcmp(cr, "FEC_NONE"))
|
|
237 ptr->cr =FEC_NONE;
|
|
238 else ptr->cr =FEC_AUTO;
|
|
239
|
|
240 if(! strcmp(mod, "QAM_128"))
|
|
241 ptr->mod = QAM_128;
|
|
242 else if(! strcmp(mod, "QAM_256"))
|
|
243 ptr->mod = QAM_256;
|
|
244 else if(! strcmp(mod, "QAM_64"))
|
|
245 ptr->mod = QAM_64;
|
|
246 else if(! strcmp(mod, "QAM_32"))
|
|
247 ptr->mod = QAM_32;
|
|
248 else if(! strcmp(mod, "QAM_16"))
|
|
249 ptr->mod = QAM_16;
|
10560
|
250 //else ptr->mod = QPSK;
|
|
251 }
|
|
252
|
|
253
|
|
254 if(type == TUNER_TER)
|
|
255 {
|
|
256 if(! strcmp(bw, "BANDWIDTH_6_MHZ"))
|
|
257 ptr->bw = BANDWIDTH_6_MHZ;
|
|
258 else if(! strcmp(bw, "BANDWIDTH_7_MHZ"))
|
|
259 ptr->bw = BANDWIDTH_7_MHZ;
|
|
260 else if(! strcmp(bw, "BANDWIDTH_8_MHZ"))
|
|
261 ptr->bw = BANDWIDTH_8_MHZ;
|
9610
|
262
|
|
263
|
|
264 if(! strcmp(transm, "TRANSMISSION_MODE_2K"))
|
|
265 ptr->trans = TRANSMISSION_MODE_2K;
|
|
266 else if(! strcmp(transm, "TRANSMISSION_MODE_8K"))
|
|
267 ptr->trans = TRANSMISSION_MODE_8K;
|
|
268
|
10560
|
269
|
9610
|
270 if(! strcmp(gi, "GUARD_INTERVAL_1_32"))
|
|
271 ptr->gi = GUARD_INTERVAL_1_32;
|
|
272 else if(! strcmp(gi, "GUARD_INTERVAL_1_16"))
|
|
273 ptr->gi = GUARD_INTERVAL_1_16;
|
|
274 else if(! strcmp(gi, "GUARD_INTERVAL_1_8"))
|
|
275 ptr->gi = GUARD_INTERVAL_1_8;
|
|
276 else ptr->gi = GUARD_INTERVAL_1_4;
|
|
277 }
|
|
278
|
|
279 list->NUM_CHANNELS++;
|
|
280 row_count++;
|
|
281 }
|
|
282
|
|
283 fclose(f);
|
10560
|
284 list->current = 0;
|
9610
|
285 return list;
|
|
286 }
|
|
287
|
|
288
|
|
289
|
10560
|
290 static int dvb_streaming_read(stream_t *stream, char *buffer, int size)
|
9610
|
291 {
|
|
292 struct pollfd pfds[1];
|
10560
|
293 int pos=0, tries, rk;
|
|
294 int fd = stream->fd;
|
|
295 dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
|
9610
|
296
|
10560
|
297 mp_msg(MSGT_DEMUX, MSGL_V, "dvb_streaming_read(%d)\n", size);
|
9610
|
298
|
11352
|
299 tries = priv->retry + 1;
|
|
300
|
9610
|
301 while(pos < size)
|
|
302 {
|
10560
|
303 pfds[0].fd = fd;
|
|
304 pfds[0].events = POLLIN | POLLPRI;
|
9610
|
305
|
10560
|
306 poll(pfds, 1, 500);
|
|
307 rk = size - pos;
|
|
308 if((rk = read(fd, &buffer[pos], rk)) > 0)
|
|
309 {
|
|
310 pos += rk;
|
|
311 mp_msg(MSGT_DEMUX, MSGL_V, "ret (%d) bytes\n", pos);
|
|
312 }
|
|
313 else
|
|
314 {
|
|
315 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);
|
|
316 if(--tries > 0)
|
|
317 {
|
|
318 errno = 0;
|
|
319 //reset_demuxers(priv);
|
|
320 continue;
|
|
321 }
|
|
322 else
|
|
323 {
|
|
324 errno = 0;
|
|
325 break;
|
|
326 }
|
|
327 }
|
|
328 }
|
9610
|
329
|
10560
|
330 if(! pos)
|
|
331 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, return %d bytes\n", pos);
|
9610
|
332
|
|
333 return pos;
|
|
334 }
|
|
335
|
|
336
|
10560
|
337 static int reset_demuxers(dvb_priv_t *priv)
|
9610
|
338 {
|
10560
|
339 dvb_channel_t *channel;
|
|
340 dvb_channels_list *list = priv->list;
|
|
341
|
|
342 channel = &(list->channels[list->current]);
|
|
343
|
|
344 if(priv->is_on) //the fds are already open and we have to stop the demuxers
|
|
345 {
|
|
346 dvb_demux_stop(priv->demux_fd[0]);
|
|
347 dvb_demux_stop(priv->demux_fd[1]);
|
|
348 }
|
|
349
|
|
350 if(channel->vpid)
|
|
351 if(! dvb_set_ts_filt(priv->demux_fd[0], channel->vpid, DMX_PES_VIDEO))
|
|
352 return 0;
|
|
353 //dvb_demux_start(priv->demux_fd[0]);
|
|
354
|
|
355 if(channel->apid1)
|
|
356 if(! dvb_set_ts_filt(priv->demux_fd[1], channel->apid1, DMX_PES_AUDIO))
|
|
357 return 0;
|
|
358
|
|
359 printf("RESET DEMUXERS SUCCEDED, errno=%d\n\n\n", errno);
|
|
360 }
|
|
361
|
|
362
|
|
363 int dvb_set_channel(dvb_priv_t *priv, int n)
|
|
364 {
|
|
365 dvb_channels_list *list;
|
|
366 dvb_channel_t *channel;
|
|
367 int do_tuning;
|
|
368 stream_t *stream = (stream_t*) priv->stream;
|
|
369 char buf[4096];
|
9610
|
370
|
10560
|
371 if(priv->is_on) //the fds are already open and we have to stop the demuxers
|
|
372 {
|
|
373 dvb_demux_stop(priv->demux_fd[0]);
|
|
374 dvb_demux_stop(priv->demux_fd[1]);
|
|
375 priv->retry = 0;
|
11352
|
376 while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer
|
10560
|
377 }
|
|
378
|
11352
|
379 priv->retry = 5;
|
10560
|
380 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: channel %d\n", n);
|
|
381 list = priv->list;
|
|
382 if(list == NULL)
|
|
383 {
|
|
384 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: LIST NULL PTR, quit\n");
|
|
385 return 0;
|
|
386 }
|
|
387
|
|
388 if((n > list->NUM_CHANNELS) || (n < 0))
|
|
389 {
|
|
390 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, abort\n", n);
|
|
391 return 0;
|
|
392 }
|
9610
|
393
|
10560
|
394 list->current = n;
|
|
395 channel = &(list->channels[list->current]);
|
|
396 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: new channel name=%s\n", channel->name);
|
|
397
|
|
398 switch(priv->tuner_type)
|
|
399 {
|
|
400 case TUNER_SAT:
|
|
401 sprintf(priv->new_tuning, "%d|%09d|%09d|%d|%c", priv->card, channel->freq, channel->srate, channel->diseqc, channel->pol);
|
|
402 break;
|
9610
|
403
|
10560
|
404 case TUNER_TER:
|
|
405 sprintf(priv->new_tuning, "%d|%09d|%d|%d|%d|%d|%d|%d", priv->card, channel->freq, channel->inv,
|
|
406 channel->bw, channel->cr, channel->mod, channel->trans, channel->gi);
|
|
407 break;
|
|
408
|
|
409 case TUNER_CBL:
|
|
410 sprintf(priv->new_tuning, "%d|%09d|%d|%d|%d|%d", priv->card, channel->freq, channel->inv, channel->srate,
|
|
411 channel->cr, channel->mod);
|
|
412 break;
|
|
413 }
|
|
414
|
|
415
|
9610
|
416
|
10560
|
417 if(strcmp(priv->prev_tuning, priv->new_tuning))
|
|
418 {
|
|
419 mp_msg(MSGT_DEMUX, MSGL_V, "DIFFERENT TUNING THAN THE PREVIOUS: %s -> %s\n", priv->prev_tuning, priv->new_tuning);
|
|
420 strcpy(priv->prev_tuning, priv->new_tuning);
|
|
421 do_tuning = 1;
|
|
422 }
|
|
423 else
|
|
424 {
|
11352
|
425 mp_msg(MSGT_DEMUX, MSGL_V, "SAME TUNING PARAMETERS, NO TUNING\n");
|
10560
|
426 do_tuning = 0;
|
|
427 }
|
|
428
|
|
429 stream->eof=1;
|
|
430 stream_reset(stream);
|
|
431
|
9610
|
432
|
10560
|
433 if(do_tuning)
|
|
434 if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone,
|
|
435 channel->inv, channel->mod, channel->gi, channel->trans, channel->bw, channel->cr))
|
|
436 return 0;
|
|
437
|
|
438
|
|
439 priv->is_on = 1;
|
|
440
|
|
441 //sets demux filters and restart the stream
|
|
442 if(channel->vpid)
|
|
443 if(! dvb_set_ts_filt(priv->demux_fd[0], channel->vpid, DMX_PES_VIDEO))
|
|
444 return 0;
|
|
445 //dvb_demux_start(priv->demux_fd[0]);
|
|
446
|
|
447 if(channel->apid1)
|
|
448 if(! dvb_set_ts_filt(priv->demux_fd[1], channel->apid1, DMX_PES_AUDIO))
|
|
449 return 0;
|
|
450 //dvb_demux_start(priv->demux_fd[1]);
|
|
451
|
|
452 return 1;
|
|
453 }
|
|
454
|
|
455
|
9610
|
456
|
10560
|
457 int dvb_step_channel(dvb_priv_t *priv, int dir)
|
|
458 {
|
|
459 int new_current;
|
|
460 dvb_channels_list *list;
|
|
461
|
|
462 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_STEP_CHANNEL dir %d\n", dir);
|
9610
|
463
|
10560
|
464 if(priv == NULL)
|
|
465 {
|
|
466 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL priv_ptr, quit\n");
|
|
467 return 0;
|
|
468 }
|
9610
|
469
|
10560
|
470 list = priv->list;
|
|
471 if(list == NULL)
|
|
472 {
|
|
473 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL list_ptr, quit\n");
|
|
474 return 0;
|
|
475 }
|
9610
|
476
|
10560
|
477
|
|
478 if(dir == DVB_CHANNEL_HIGHER)
|
|
479 {
|
|
480 if(list->current == list->NUM_CHANNELS-1)
|
|
481 return 0;
|
9610
|
482
|
10560
|
483 new_current = list->current + 1;
|
|
484 }
|
|
485 else
|
|
486 {
|
|
487 if(list->current == 0)
|
|
488 return 0;
|
9610
|
489
|
10560
|
490 new_current = list->current - 1;
|
|
491 }
|
|
492
|
|
493 return dvb_set_channel(priv, new_current);
|
9610
|
494 }
|
|
495
|
|
496
|
10560
|
497
|
|
498
|
9610
|
499 extern char *get_path(char *);
|
|
500
|
10560
|
501 static void dvbin_close(stream_t *stream)
|
9610
|
502 {
|
10560
|
503 dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
|
9610
|
504
|
10560
|
505 close(priv->dvr_fd);
|
|
506 close(priv->demux_fd[0]);
|
|
507 close(priv->demux_fd[1]);
|
|
508 priv->is_on = 0;
|
|
509 priv->stream = NULL;
|
|
510 if(dvb_list_ptr)
|
|
511 free(dvb_list_ptr);
|
|
512
|
|
513 dvb_list_ptr = NULL;
|
|
514 }
|
9610
|
515
|
|
516
|
10560
|
517 static int dvb_streaming_start(dvb_priv_t *priv, struct stream_priv_s *opts, int tuner_type)
|
|
518 {
|
|
519 int pids[MAX_CHANNELS], pestypes[MAX_CHANNELS], npids = 0, i;
|
|
520 dvb_channel_t *channel = NULL;
|
|
521 stream_t *stream = (stream_t*) priv->stream;
|
9610
|
522
|
|
523
|
|
524 mp_msg(MSGT_DEMUX, MSGL_INFO, "code taken from dvbstream for mplayer v0.4pre1 - (C) Dave Chapman 2001\n");
|
|
525 mp_msg(MSGT_DEMUX, MSGL_INFO, "Released under the GPL.\n");
|
|
526 mp_msg(MSGT_DEMUX, MSGL_INFO, "Latest version available from http://www.linuxstb.org/\n");
|
10560
|
527 mp_msg(MSGT_DEMUX, MSGL_V, "PROG: %s, CARD: %d, VID: %d, AID: %d, TYPE: %s, FILE: %s\n",
|
|
528 opts->prog, opts->card, opts->vid, opts->aid, opts->type, opts->file);
|
9610
|
529
|
10560
|
530 priv->is_on = 0;
|
9610
|
531
|
10560
|
532 if(strlen(opts->prog))
|
9610
|
533 {
|
10560
|
534 if(dvb_list_ptr != NULL)
|
|
535 {
|
|
536 i = 0;
|
|
537 while((channel == NULL) && i < dvb_list_ptr->NUM_CHANNELS)
|
|
538 {
|
|
539 if(! strcmp(dvb_list_ptr->channels[i].name, opts->prog))
|
|
540 channel = &(dvb_list_ptr->channels[i]);
|
9610
|
541
|
10560
|
542 i++;
|
|
543 }
|
9610
|
544
|
10560
|
545 if(channel != NULL)
|
|
546 {
|
|
547 dvb_list_ptr->current = i-1;
|
|
548 mp_msg(MSGT_DEMUX, MSGL_V, "PROGRAM NUMBER %d: name=%s, vid=%d, aid=%d, freq=%lu, srate=%lu, pol=%c, diseqc: %d, tone: %d\n", i-1,
|
|
549 channel->name, channel->vpid, channel->apid1,
|
|
550 channel->freq, channel->srate, channel->pol, channel->diseqc, channel->tone);
|
|
551 }
|
|
552 else if(opts->prog)
|
|
553 {
|
|
554 mp_msg(MSGT_DEMUX, MSGL_ERR, "\n\nDVBIN: no such channel \"%s\"\n\n", opts->prog);
|
|
555 return 0;
|
|
556 }
|
|
557 }
|
|
558 else
|
|
559 {
|
|
560 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVBIN: chanel %s requested, but no channel list supplied %s\n", opts->prog);
|
|
561 return 0;
|
|
562 }
|
9610
|
563 }
|
|
564
|
|
565
|
10560
|
566
|
|
567 if(opts->vid > 0)
|
9610
|
568 {
|
10560
|
569 pids[npids] = opts->vid;
|
9610
|
570 }
|
|
571 else if(channel != NULL)
|
|
572 {
|
10560
|
573 pids[npids] = channel->vpid;
|
9610
|
574 }
|
|
575 pestypes[npids] = DMX_PES_VIDEO;
|
|
576 npids++;
|
|
577
|
10560
|
578 if(opts->aid > 0)
|
9610
|
579 {
|
10560
|
580 pids[npids] = opts->aid;
|
9610
|
581 }
|
|
582 else if(channel != NULL)
|
|
583 {
|
10560
|
584 pids[npids] = channel->apid1;
|
9610
|
585 }
|
|
586 pestypes[npids] = DMX_PES_AUDIO;
|
|
587 npids++;
|
|
588
|
|
589
|
|
590
|
10560
|
591 priv->demux_fd[0] = open(dvb_demuxdev[priv->card], O_RDWR);
|
|
592 if(priv->demux_fd[0] < 0)
|
9610
|
593 {
|
10560
|
594 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR OPENING DEMUX 0: %d\n", errno);
|
|
595 return 0;
|
9610
|
596 }
|
|
597
|
10560
|
598 priv->demux_fd[1] = open(dvb_demuxdev[priv->card], O_RDWR);
|
|
599 if(priv->demux_fd[1] < 0)
|
9610
|
600 {
|
10560
|
601 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR OPENING DEMUX 1: %d\n", errno);
|
|
602 return 0;
|
9610
|
603 }
|
|
604
|
|
605
|
10560
|
606 priv->dvr_fd = open(dvb_dvrdev[priv->card], O_RDONLY| O_NONBLOCK);
|
|
607 if(priv->dvr_fd < 0)
|
9610
|
608 {
|
10560
|
609 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR OPENING DVR DEVICE %s: %d\n", dvb_dvrdev[priv->card], errno);
|
|
610 return 0;
|
9610
|
611 }
|
|
612
|
|
613
|
10560
|
614 strcpy(priv->prev_tuning, "");
|
|
615 if(!dvb_set_channel(priv, dvb_list_ptr->current))
|
|
616 {
|
|
617 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR, COULDN'T SET CHANNEL %i: ", dvb_list_ptr->current);
|
|
618 dvbin_close(stream);
|
|
619 return 0;
|
|
620 }
|
|
621
|
9610
|
622 stream->fd = priv->dvr_fd;
|
|
623
|
10560
|
624 mp_msg(MSGT_DEMUX, MSGL_V, "SUCCESSFUL EXIT from dvb_streaming_start\n");
|
9610
|
625
|
|
626 return 1;
|
|
627 }
|
|
628
|
|
629
|
10560
|
630
|
|
631
|
|
632 static int dvb_open(stream_t *stream, int mode, void *opts, int *file_format)
|
9610
|
633 {
|
10560
|
634 // I don't force the file format bacause, although it's almost always TS,
|
|
635 // there are some providers that stream an IP multicast with M$ Mpeg4 inside
|
|
636 struct stream_priv_s* p = (struct stream_priv_s*)opts;
|
|
637 char *name = NULL, *filename;
|
|
638 dvb_priv_t *priv;
|
11352
|
639 int tuner_type = 0;
|
10560
|
640
|
|
641
|
|
642
|
|
643 if(mode != STREAM_READ)
|
|
644 return STREAM_UNSUPORTED;
|
|
645
|
|
646 stream->priv = (dvb_priv_t*) malloc(sizeof(dvb_priv_t));
|
|
647 if(stream->priv == NULL)
|
|
648 return STREAM_ERROR;
|
|
649
|
|
650 priv = (dvb_priv_t *)stream->priv;
|
|
651 priv->stream = stream;
|
|
652
|
|
653 name = malloc(sizeof(char)*128);
|
|
654
|
|
655 if(name == NULL)
|
|
656 {
|
|
657 mp_msg(MSGT_DEMUX, MSGL_ERR, "COULDN'T MALLOC SOME TMP MEMORY, EXIT!\n");
|
|
658 return STREAM_ERROR;
|
|
659 }
|
|
660
|
|
661 priv->card = p->card - 1;
|
|
662
|
|
663 if(!strncmp(p->type, "CBL", 3))
|
|
664 {
|
|
665 tuner_type = TUNER_CBL;
|
|
666 }
|
|
667 else if(!strncmp(p->type, "TER", 3))
|
|
668 {
|
|
669 tuner_type = TUNER_TER;
|
|
670 }
|
|
671 else if(!strncmp(p->type, "SAT", 3))
|
|
672 {
|
|
673 tuner_type = TUNER_SAT;
|
|
674 }
|
|
675 else
|
|
676 {
|
|
677 int t = dvb_get_tuner_type(priv);
|
|
678
|
|
679 if((t==TUNER_SAT) || (t==TUNER_TER) || (t==TUNER_CBL))
|
|
680 {
|
|
681 tuner_type = t;
|
|
682 }
|
|
683 }
|
|
684
|
11352
|
685 if(tuner_type == 0)
|
|
686 {
|
|
687 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n");
|
|
688 return STREAM_ERROR;
|
|
689 }
|
|
690
|
|
691
|
10560
|
692 priv->tuner_type = tuner_type;
|
|
693
|
|
694 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: prog=%s, card=%d, type=%d, vid=%d, aid=%d, file=%s\n",
|
|
695 p->prog, priv->card+1, priv->tuner_type, p->vid, p->aid, p->file);
|
|
696
|
|
697 if(dvb_list_ptr == NULL)
|
|
698 {
|
|
699 filename = get_path(p->file);
|
|
700 if(filename)
|
|
701 {
|
|
702 if((dvb_list_ptr = dvb_get_channels(filename, tuner_type)) == NULL)
|
|
703 mp_msg(MSGT_DEMUX, MSGL_ERR, "EMPTY CHANNELS LIST FROM FILE %s!\n", filename);
|
11352
|
704 priv->list = dvb_list_ptr;
|
10560
|
705 }
|
|
706 else
|
|
707 {
|
11352
|
708 priv->list = dvb_list_ptr = NULL;
|
10560
|
709 mp_msg(MSGT_DEMUX, MSGL_WARN, "NO CHANNELS FILE FOUND!\n");
|
|
710 }
|
|
711 }
|
|
712 else
|
|
713 priv->list = dvb_list_ptr;
|
|
714
|
|
715
|
11352
|
716 if(priv->list == NULL)
|
|
717 {
|
|
718 mp_msg(MSGT_DEMUX, MSGL_ERR, "NO CHANNELS AVAILABLE, EXIT!\n");
|
|
719 return STREAM_ERROR;
|
|
720 }
|
|
721
|
10560
|
722 if(! strcmp(p->prog, ""))
|
|
723 {
|
|
724 if(dvb_list_ptr != NULL)
|
|
725 {
|
|
726 dvb_channel_t *channel;
|
|
727
|
|
728 channel = &(dvb_list_ptr->channels[dvb_list_ptr->current]);
|
|
729 p->prog = channel->name;
|
|
730 }
|
|
731 }
|
|
732
|
|
733
|
|
734 if(! dvb_streaming_start(priv, p, tuner_type))
|
|
735 {
|
|
736 free(stream->priv);
|
|
737 stream->priv = NULL;
|
|
738 return STREAM_ERROR;
|
|
739 }
|
|
740
|
|
741 stream->type = STREAMTYPE_DVB;
|
|
742 stream->fill_buffer = dvb_streaming_read;
|
|
743 stream->close = dvbin_close;
|
|
744 m_struct_free(&stream_opts, opts);
|
|
745
|
|
746 return STREAM_OK;
|
9610
|
747 }
|
10560
|
748
|
|
749
|
|
750
|
|
751 stream_info_t stream_info_dvb = {
|
|
752 "Dvb Input",
|
|
753 "dvbin",
|
|
754 "Nico",
|
|
755 "based on the code from ??? (probably Arpi)",
|
|
756 dvb_open,
|
|
757 { "dvb", NULL },
|
|
758 &stream_opts,
|
|
759 1 // Urls are an option string
|
|
760 };
|
|
761
|
|
762
|
|
763
|
|
764
|