Mercurial > mplayer.hg
annotate stream/stream_dvb.c @ 26210:c5a06bc58309
Do not disable all Mac OS X support when pthreads are unavailable.
author | diego |
---|---|
date | Sat, 15 Mar 2008 09:20:41 +0000 |
parents | 37786c8469b2 |
children | b2cc442c095d |
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" | |
24242
76f5d8892c04
Clean up the way get_path is handled: Compile get_path.c to an object to link
diego
parents:
23703
diff
changeset
|
47 #include "get_path.h" |
23703
9fb716ab06a3
Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents:
23629
diff
changeset
|
48 #include "libavutil/avstring.h" |
19296 | 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 | |
25242 | 78 static const m_option_t stream_params[] = { |
19296 | 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 | |
25691 | 92 static const struct m_struct_st stream_opts = { |
19296 | 93 "dvbin", |
94 sizeof(struct stream_priv_s), | |
95 &stream_defaults, | |
96 stream_params | |
97 }; | |
98 | |
99 | |
100 | |
25241
bb7c65f2a289
Make m_option_t arrays referenced by cfg-common.h const
reimar
parents:
25211
diff
changeset
|
101 const m_option_t dvbin_opts_conf[] = { |
19296 | 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); | |
24875 | 119 int dvb_open_devices(dvb_priv_t *priv, int n, int demux_cnt); |
120 int dvb_fix_demuxes(dvb_priv_t *priv, int cnt); | |
19296 | 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 | |
127 | |
128 | |
129 static dvb_channels_list *dvb_get_channels(char *filename, int type) | |
130 { | |
131 dvb_channels_list *list; | |
132 FILE *f; | |
133 char line[CHANNEL_LINE_LEN], *colon; | |
134 | |
135 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
|
136 int has8192, has0; |
19296 | 137 dvb_channel_t *ptr, *tmp, chn; |
138 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]; | |
139 const char *cbl_conf = "%d:%255[^:]:%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n"; | |
140 const char *sat_conf = "%d:%c:%d:%d:%255[^:]:%255[^:]\n"; | |
141 const char *ter_conf = "%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n"; | |
142 const char *atsc_conf = "%d:%255[^:]:%255[^:]:%255[^:]\n"; | |
143 | |
144 mp_msg(MSGT_DEMUX, MSGL_V, "CONFIG_READ FILE: %s, type: %d\n", filename, type); | |
145 if((f=fopen(filename, "r"))==NULL) | |
146 { | |
147 mp_msg(MSGT_DEMUX, MSGL_FATAL, "CAN'T READ CONFIG FILE %s\n", filename); | |
148 return NULL; | |
149 } | |
150 | |
151 list = malloc(sizeof(dvb_channels_list)); | |
152 if(list == NULL) | |
153 { | |
154 fclose(f); | |
155 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: couldn't malloc enough memory\n"); | |
156 return NULL; | |
157 } | |
158 | |
159 ptr = &chn; | |
160 list->NUM_CHANNELS = 0; | |
161 list->channels = NULL; | |
162 while(! feof(f)) | |
163 { | |
164 if( fgets(line, CHANNEL_LINE_LEN, f) == NULL ) | |
165 continue; | |
166 | |
167 if((line[0] == '#') || (strlen(line) == 0)) | |
168 continue; | |
169 | |
21464 | 170 colon = strchr(line, ':'); |
19296 | 171 if(colon) |
172 { | |
173 k = colon - line; | |
174 if(!k) | |
175 continue; | |
23629 | 176 ptr->name = malloc(k+1); |
19296 | 177 if(! ptr->name) |
178 continue; | |
23703
9fb716ab06a3
Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents:
23629
diff
changeset
|
179 av_strlcpy(ptr->name, line, k+1); |
19296 | 180 } |
181 else | |
182 continue; | |
183 k++; | |
184 apid_str[0] = vpid_str[0] = 0; | |
185 ptr->pids_cnt = 0; | |
186 ptr->freq = 0; | |
187 if(type == TUNER_TER) | |
188 { | |
189 fields = sscanf(&line[k], ter_conf, | |
190 &ptr->freq, inv, bw, cr, tmp_lcr, mod, | |
191 transm, gi, tmp_hier, vpid_str, apid_str); | |
192 mp_msg(MSGT_DEMUX, MSGL_V, | |
193 "TER, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d", | |
194 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); | |
195 } | |
196 else if(type == TUNER_CBL) | |
197 { | |
198 fields = sscanf(&line[k], cbl_conf, | |
199 &ptr->freq, inv, &ptr->srate, | |
200 cr, mod, vpid_str, apid_str); | |
201 mp_msg(MSGT_DEMUX, MSGL_V, | |
202 "CBL, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d", | |
203 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate); | |
204 } | |
205 #ifdef DVB_ATSC | |
206 else if(type == TUNER_ATSC) | |
207 { | |
208 fields = sscanf(&line[k], atsc_conf, | |
209 &ptr->freq, mod, vpid_str, apid_str); | |
210 mp_msg(MSGT_DEMUX, MSGL_V, | |
211 "ATSC, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d\n", | |
212 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); | |
213 } | |
214 #endif | |
215 else //SATELLITE | |
216 { | |
217 fields = sscanf(&line[k], sat_conf, | |
218 &ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, vpid_str, apid_str); | |
219 ptr->pol = toupper(ptr->pol); | |
220 ptr->freq *= 1000UL; | |
221 ptr->srate *= 1000UL; | |
222 ptr->tone = -1; | |
223 ptr->inv = INVERSION_AUTO; | |
224 ptr->cr = FEC_AUTO; | |
225 if((ptr->diseqc > 4) || (ptr->diseqc < 0)) | |
226 continue; | |
227 if(ptr->diseqc > 0) | |
228 ptr->diseqc--; | |
229 mp_msg(MSGT_DEMUX, MSGL_V, | |
230 "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d", | |
231 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc); | |
232 } | |
233 | |
234 if(vpid_str[0]) | |
235 { | |
236 pcnt = sscanf(vpid_str, "%d+%d+%d+%d+%d+%d+%d", &ptr->pids[0], &ptr->pids[1], &ptr->pids[2], &ptr->pids[3], | |
237 &ptr->pids[4], &ptr->pids[5], &ptr->pids[6]); | |
238 if(pcnt > 0) | |
239 { | |
240 ptr->pids_cnt = pcnt; | |
241 fields++; | |
242 } | |
243 } | |
244 | |
245 if(apid_str[0]) | |
246 { | |
247 cnt = ptr->pids_cnt; | |
248 pcnt = sscanf(apid_str, "%d+%d+%d+%d+%d+%d+%d+%d", &ptr->pids[cnt], &ptr->pids[cnt+1], &ptr->pids[cnt+2], | |
249 &ptr->pids[cnt+3], &ptr->pids[cnt+4], &ptr->pids[cnt+5], &ptr->pids[cnt+6], &ptr->pids[cnt+7]); | |
250 if(pcnt > 0) | |
251 { | |
252 ptr->pids_cnt += pcnt; | |
253 fields++; | |
254 } | |
255 } | |
256 | |
257 if((fields < 2) || (ptr->pids_cnt <= 0) || (ptr->freq == 0) || (strlen(ptr->name) == 0)) | |
258 continue; | |
259 | |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
260 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
|
261 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
|
262 { |
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 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
|
264 has8192 = 1; |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
265 if(ptr->pids[cnt] == 0) |
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
266 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
|
267 } |
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 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
|
269 { |
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 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
|
271 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
|
272 } |
21814
8032b9d9349d
don't add pid 0 if it's already present in the list
nicodvb
parents:
21465
diff
changeset
|
273 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
|
274 { |
21034 | 275 ptr->pids[ptr->pids_cnt] = 0; //PID 0 is the PAT |
276 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
|
277 } |
19296 | 278 mp_msg(MSGT_DEMUX, MSGL_V, " PIDS: "); |
279 for(cnt = 0; cnt < ptr->pids_cnt; cnt++) | |
280 mp_msg(MSGT_DEMUX, MSGL_V, " %d ", ptr->pids[cnt]); | |
281 mp_msg(MSGT_DEMUX, MSGL_V, "\n"); | |
282 | |
283 if((type == TUNER_TER) || (type == TUNER_CBL)) | |
284 { | |
285 if(! strcmp(inv, "INVERSION_ON")) | |
286 ptr->inv = INVERSION_ON; | |
287 else if(! strcmp(inv, "INVERSION_OFF")) | |
288 ptr->inv = INVERSION_OFF; | |
289 else | |
290 ptr->inv = INVERSION_AUTO; | |
291 | |
292 | |
293 if(! strcmp(cr, "FEC_1_2")) | |
294 ptr->cr =FEC_1_2; | |
295 else if(! strcmp(cr, "FEC_2_3")) | |
296 ptr->cr =FEC_2_3; | |
297 else if(! strcmp(cr, "FEC_3_4")) | |
298 ptr->cr =FEC_3_4; | |
299 #ifdef HAVE_DVB_HEAD | |
300 else if(! strcmp(cr, "FEC_4_5")) | |
301 ptr->cr =FEC_4_5; | |
302 else if(! strcmp(cr, "FEC_6_7")) | |
303 ptr->cr =FEC_6_7; | |
304 else if(! strcmp(cr, "FEC_8_9")) | |
305 ptr->cr =FEC_8_9; | |
306 #endif | |
307 else if(! strcmp(cr, "FEC_5_6")) | |
308 ptr->cr =FEC_5_6; | |
309 else if(! strcmp(cr, "FEC_7_8")) | |
310 ptr->cr =FEC_7_8; | |
311 else if(! strcmp(cr, "FEC_NONE")) | |
312 ptr->cr =FEC_NONE; | |
313 else ptr->cr =FEC_AUTO; | |
314 } | |
315 | |
316 | |
317 if((type == TUNER_TER) || (type == TUNER_CBL) || (type == TUNER_ATSC)) | |
318 { | |
319 if(! strcmp(mod, "QAM_128")) | |
320 ptr->mod = QAM_128; | |
321 else if(! strcmp(mod, "QAM_256")) | |
322 ptr->mod = QAM_256; | |
323 else if(! strcmp(mod, "QAM_64")) | |
324 ptr->mod = QAM_64; | |
325 else if(! strcmp(mod, "QAM_32")) | |
326 ptr->mod = QAM_32; | |
327 else if(! strcmp(mod, "QAM_16")) | |
328 ptr->mod = QAM_16; | |
329 #ifdef DVB_ATSC | |
330 else if(! strcmp(mod, "VSB_8") || ! strcmp(mod, "8VSB")) | |
331 ptr->mod = VSB_8; | |
332 else if(! strcmp(mod, "VSB_16") || !strcmp(mod, "16VSB")) | |
333 ptr->mod = VSB_16; | |
334 | |
335 ptr->inv = INVERSION_AUTO; | |
336 #endif | |
337 } | |
338 | |
339 if(type == TUNER_TER) | |
340 { | |
341 if(! strcmp(bw, "BANDWIDTH_6_MHZ")) | |
342 ptr->bw = BANDWIDTH_6_MHZ; | |
343 else if(! strcmp(bw, "BANDWIDTH_7_MHZ")) | |
344 ptr->bw = BANDWIDTH_7_MHZ; | |
345 else if(! strcmp(bw, "BANDWIDTH_8_MHZ")) | |
346 ptr->bw = BANDWIDTH_8_MHZ; | |
347 | |
348 | |
349 if(! strcmp(transm, "TRANSMISSION_MODE_2K")) | |
350 ptr->trans = TRANSMISSION_MODE_2K; | |
351 else if(! strcmp(transm, "TRANSMISSION_MODE_8K")) | |
352 ptr->trans = TRANSMISSION_MODE_8K; | |
353 | |
354 | |
355 if(! strcmp(gi, "GUARD_INTERVAL_1_32")) | |
356 ptr->gi = GUARD_INTERVAL_1_32; | |
357 else if(! strcmp(gi, "GUARD_INTERVAL_1_16")) | |
358 ptr->gi = GUARD_INTERVAL_1_16; | |
359 else if(! strcmp(gi, "GUARD_INTERVAL_1_8")) | |
360 ptr->gi = GUARD_INTERVAL_1_8; | |
361 else ptr->gi = GUARD_INTERVAL_1_4; | |
362 | |
363 if(! strcmp(tmp_lcr, "FEC_1_2")) | |
364 ptr->cr_lp =FEC_1_2; | |
365 else if(! strcmp(tmp_lcr, "FEC_2_3")) | |
366 ptr->cr_lp =FEC_2_3; | |
367 else if(! strcmp(tmp_lcr, "FEC_3_4")) | |
368 ptr->cr_lp =FEC_3_4; | |
369 #ifdef HAVE_DVB_HEAD | |
370 else if(! strcmp(tmp_lcr, "FEC_4_5")) | |
371 ptr->cr_lp =FEC_4_5; | |
372 else if(! strcmp(tmp_lcr, "FEC_6_7")) | |
373 ptr->cr_lp =FEC_6_7; | |
374 else if(! strcmp(tmp_lcr, "FEC_8_9")) | |
375 ptr->cr_lp =FEC_8_9; | |
376 #endif | |
377 else if(! strcmp(tmp_lcr, "FEC_5_6")) | |
378 ptr->cr_lp =FEC_5_6; | |
379 else if(! strcmp(tmp_lcr, "FEC_7_8")) | |
380 ptr->cr_lp =FEC_7_8; | |
381 else if(! strcmp(tmp_lcr, "FEC_NONE")) | |
382 ptr->cr_lp =FEC_NONE; | |
383 else ptr->cr_lp =FEC_AUTO; | |
384 | |
385 | |
386 if(! strcmp(tmp_hier, "HIERARCHY_1")) | |
387 ptr->hier = HIERARCHY_1; | |
388 else if(! strcmp(tmp_hier, "HIERARCHY_2")) | |
389 ptr->hier = HIERARCHY_2; | |
390 else if(! strcmp(tmp_hier, "HIERARCHY_4")) | |
391 ptr->hier = HIERARCHY_4; | |
392 #ifdef HAVE_DVB_HEAD | |
393 else if(! strcmp(tmp_hier, "HIERARCHY_AUTO")) | |
394 ptr->hier = HIERARCHY_AUTO; | |
395 #endif | |
396 else ptr->hier = HIERARCHY_NONE; | |
397 } | |
398 | |
23629 | 399 tmp = realloc(list->channels, sizeof(dvb_channel_t) * (list->NUM_CHANNELS + 1)); |
19296 | 400 if(tmp == NULL) |
401 break; | |
402 | |
403 list->channels = tmp; | |
404 memcpy(&(list->channels[list->NUM_CHANNELS]), ptr, sizeof(dvb_channel_t)); | |
405 list->NUM_CHANNELS++; | |
406 if(sizeof(dvb_channel_t) * list->NUM_CHANNELS >= 1024*1024) | |
407 { | |
408 mp_msg(MSGT_DEMUX, MSGL_V, "dvbin.c, > 1MB allocated for channels struct, dropping the rest of the file\r\n"); | |
409 break; | |
410 } | |
411 } | |
412 | |
413 fclose(f); | |
414 if(list->NUM_CHANNELS == 0) | |
415 { | |
416 if(list->channels != NULL) | |
417 free(list->channels); | |
418 free(list); | |
419 return NULL; | |
420 } | |
421 | |
422 list->current = 0; | |
423 return list; | |
424 } | |
425 | |
25379
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
426 void dvb_free_config(dvb_config_t *config) |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
427 { |
25389
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
428 int i, j; |
19296 | 429 |
25379
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
430 for(i=0; i<config->count; i++) |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
431 { |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
432 if(config->cards[i].name) |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
433 free(config->cards[i].name); |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
434 if(!config->cards[i].list) |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
435 continue; |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
436 if(config->cards[i].list->channels) |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
437 { |
25389
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
438 for(j=0; j<config->cards[i].list->NUM_CHANNELS; j++) |
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
439 { |
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
440 if(config->cards[i].list->channels[j].name) |
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
441 free(config->cards[i].list->channels[j].name); |
cd65c1242675
10l, in dvb_free_config() channels' names must be free individually
nicodvb
parents:
25380
diff
changeset
|
442 } |
25379
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
443 free(config->cards[i].list->channels); |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
444 } |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
445 free(config->cards[i].list); |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
446 } |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
447 free(config); |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
448 } |
19296 | 449 |
450 static int dvb_streaming_read(stream_t *stream, char *buffer, int size) | |
451 { | |
452 struct pollfd pfds[1]; | |
453 int pos=0, tries, rk, fd; | |
454 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; | |
455 | |
456 mp_msg(MSGT_DEMUX, MSGL_DBG3, "dvb_streaming_read(%d)\n", size); | |
457 | |
458 tries = priv->retry + 1; | |
459 | |
460 fd = stream->fd; | |
461 while(pos < size) | |
462 { | |
463 pfds[0].fd = fd; | |
464 pfds[0].events = POLLIN | POLLPRI; | |
465 | |
466 rk = size - pos; | |
467 if(poll(pfds, 1, 500) <= 0) | |
468 { | |
23486 | 469 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 | 470 errno = 0; |
471 if(--tries > 0) | |
472 continue; | |
473 else | |
474 break; | |
475 } | |
476 if((rk = read(fd, &buffer[pos], rk)) > 0) | |
477 { | |
478 pos += rk; | |
479 mp_msg(MSGT_DEMUX, MSGL_DBG3, "ret (%d) bytes\n", pos); | |
480 } | |
481 } | |
482 | |
483 | |
484 if(! pos) | |
485 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, return %d bytes\n", pos); | |
486 | |
487 return pos; | |
488 } | |
489 | |
490 static void dvbin_close(stream_t *stream); | |
491 | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
492 int dvb_set_channel(stream_t *stream, int card, int n) |
19296 | 493 { |
494 dvb_channels_list *new_list; | |
495 dvb_channel_t *channel; | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
496 dvb_priv_t *priv = stream->priv; |
19296 | 497 char buf[4096]; |
498 dvb_config_t *conf = (dvb_config_t *) priv->config; | |
499 int devno; | |
500 int i; | |
501 | |
502 if((card < 0) || (card > conf->count)) | |
503 { | |
504 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CARD NUMBER: %d vs %d, abort\n", card, conf->count); | |
505 return 0; | |
506 } | |
507 | |
508 devno = conf->cards[card].devno; | |
509 new_list = conf->cards[card].list; | |
510 if((n > new_list->NUM_CHANNELS) || (n < 0)) | |
511 { | |
512 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, for card %d, abort\n", n, card); | |
513 return 0; | |
514 } | |
515 channel = &(new_list->channels[n]); | |
516 | |
517 if(priv->is_on) //the fds are already open and we have to stop the demuxers | |
518 { | |
519 for(i = 0; i < priv->demux_fds_cnt; i++) | |
520 dvb_demux_stop(priv->demux_fds[i]); | |
521 | |
522 priv->retry = 0; | |
523 while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer | |
524 if(priv->card != card) | |
525 { | |
526 dvbin_close(stream); | |
24875 | 527 if(! dvb_open_devices(priv, devno, channel->pids_cnt)) |
19296 | 528 { |
529 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); | |
530 return 0; | |
531 } | |
532 } | |
533 else //close all demux_fds with pos > pids required for the new channel or open other demux_fds if we have too few | |
534 { | |
24875 | 535 if(! dvb_fix_demuxes(priv, channel->pids_cnt)) |
19296 | 536 return 0; |
537 } | |
538 } | |
539 else | |
540 { | |
24875 | 541 if(! dvb_open_devices(priv, devno, channel->pids_cnt)) |
19296 | 542 { |
543 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL2, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); | |
544 return 0; | |
545 } | |
546 } | |
547 | |
548 priv->card = card; | |
549 priv->list = new_list; | |
550 priv->retry = 5; | |
551 new_list->current = n; | |
552 stream->fd = priv->dvr_fd; | |
553 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: new channel name=%s, card: %d, channel %d\n", channel->name, card, n); | |
554 | |
555 stream->eof=1; | |
556 stream_reset(stream); | |
557 | |
558 | |
20659
31b525f90395
nonsense removal: compare old and new frequency in order to skip tuning
nicodvb
parents:
19312
diff
changeset
|
559 if(channel->freq != priv->last_freq) |
19296 | 560 if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone, |
561 channel->inv, channel->mod, channel->gi, channel->trans, channel->bw, channel->cr, channel->cr_lp, channel->hier, priv->timeout)) | |
562 return 0; | |
563 | |
20659
31b525f90395
nonsense removal: compare old and new frequency in order to skip tuning
nicodvb
parents:
19312
diff
changeset
|
564 priv->last_freq = channel->freq; |
19296 | 565 priv->is_on = 1; |
566 | |
567 //sets demux filters and restart the stream | |
568 for(i = 0; i < channel->pids_cnt; i++) | |
569 { | |
570 if(! dvb_set_ts_filt(priv->demux_fds[i], channel->pids[i], DMX_PES_OTHER)) | |
571 return 0; | |
572 } | |
573 | |
574 return 1; | |
575 } | |
576 | |
577 | |
578 | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
579 int dvb_step_channel(stream_t *stream, int dir) |
19296 | 580 { |
581 int new_current; | |
582 dvb_channels_list *list; | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
583 dvb_priv_t *priv = stream->priv; |
19296 | 584 |
585 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_STEP_CHANNEL dir %d\n", dir); | |
586 | |
587 if(priv == NULL) | |
588 { | |
589 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL priv_ptr, quit\n"); | |
590 return 0; | |
591 } | |
592 | |
593 list = priv->list; | |
594 if(list == NULL) | |
595 { | |
596 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL list_ptr, quit\n"); | |
597 return 0; | |
598 } | |
599 | |
600 new_current = (list->NUM_CHANNELS + list->current + (dir == DVB_CHANNEL_HIGHER ? 1 : -1)) % list->NUM_CHANNELS; | |
601 | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
602 return dvb_set_channel(stream, priv->card, new_current); |
19296 | 603 } |
604 | |
605 | |
606 | |
607 | |
608 static void dvbin_close(stream_t *stream) | |
609 { | |
610 int i; | |
611 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; | |
612 | |
613 for(i = priv->demux_fds_cnt-1; i >= 0; i--) | |
614 { | |
615 priv->demux_fds_cnt--; | |
616 mp_msg(MSGT_DEMUX, MSGL_V, "DVBIN_CLOSE, close(%d), fd=%d, COUNT=%d\n", i, priv->demux_fds[i], priv->demux_fds_cnt); | |
617 close(priv->demux_fds[i]); | |
618 } | |
619 close(priv->dvr_fd); | |
620 | |
621 close(priv->fe_fd); | |
622 #ifdef HAVE_DVB | |
623 close(priv->sec_fd); | |
624 #endif | |
625 | |
626 priv->is_on = 0; | |
25379
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
627 dvb_free_config(priv->config); |
19296 | 628 } |
629 | |
630 | |
25380
5857ec4dedb4
removed the obscene priv->stream entry. Someone must have injected vodka in my milk when I wrote it
nicodvb
parents:
25379
diff
changeset
|
631 static int dvb_streaming_start(stream_t *stream, struct stream_priv_s *opts, int tuner_type, char *progname) |
19296 | 632 { |
633 int i; | |
634 dvb_channel_t *channel = NULL; | |
25380
5857ec4dedb4
removed the obscene priv->stream entry. Someone must have injected vodka in my milk when I wrote it
nicodvb
parents:
25379
diff
changeset
|
635 dvb_priv_t *priv = stream->priv; |
19296 | 636 |
637 mp_msg(MSGT_DEMUX, MSGL_V, "\r\ndvb_streaming_start(PROG: %s, CARD: %d, VID: %d, AID: %d, TYPE: %s, FILE: %s)\r\n", | |
638 opts->prog, opts->card, opts->vid, opts->aid, opts->type, opts->file); | |
639 | |
640 priv->is_on = 0; | |
641 | |
642 i = 0; | |
643 while((channel == NULL) && i < priv->list->NUM_CHANNELS) | |
644 { | |
645 if(! strcmp(priv->list->channels[i].name, progname)) | |
646 channel = &(priv->list->channels[i]); | |
647 | |
648 i++; | |
649 } | |
650 | |
651 if(channel != NULL) | |
652 { | |
653 priv->list->current = i-1; | |
654 mp_msg(MSGT_DEMUX, MSGL_V, "PROGRAM NUMBER %d: name=%s, freq=%u\n", i-1, channel->name, channel->freq); | |
655 } | |
656 else | |
657 { | |
658 mp_msg(MSGT_DEMUX, MSGL_ERR, "\n\nDVBIN: no such channel \"%s\"\n\n", progname); | |
659 return 0; | |
660 } | |
661 | |
662 | |
25377
31e0937ebe38
dvb cleanup: call dvb_(set|step)_channel() without dereferencing stream->priv (1000l to me)
nicodvb
parents:
25355
diff
changeset
|
663 if(!dvb_set_channel(stream, priv->card, priv->list->current)) |
19296 | 664 { |
665 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR, COULDN'T SET CHANNEL %i: ", priv->list->current); | |
666 dvbin_close(stream); | |
667 return 0; | |
668 } | |
669 | |
670 mp_msg(MSGT_DEMUX, MSGL_V, "SUCCESSFUL EXIT from dvb_streaming_start\n"); | |
671 | |
672 return 1; | |
673 } | |
674 | |
675 | |
676 | |
677 | |
678 static int dvb_open(stream_t *stream, int mode, void *opts, int *file_format) | |
679 { | |
680 // I don't force the file format bacause, although it's almost always TS, | |
681 // there are some providers that stream an IP multicast with M$ Mpeg4 inside | |
682 struct stream_priv_s* p = (struct stream_priv_s*)opts; | |
683 dvb_priv_t *priv; | |
684 char *progname; | |
21241
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
685 int tuner_type = 0, i; |
19296 | 686 |
687 | |
688 if(mode != STREAM_READ) | |
24257 | 689 return STREAM_UNSUPPORTED; |
19296 | 690 |
23629 | 691 stream->priv = calloc(1, sizeof(dvb_priv_t)); |
19296 | 692 if(stream->priv == NULL) |
693 return STREAM_ERROR; | |
694 | |
695 priv = (dvb_priv_t *)stream->priv; | |
25379
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
696 priv->config = dvb_get_config(); |
9befb9809011
get rid of the file-static dvb_config and free the config at close() . Patch by Andrew Calkin and me
nicodvb
parents:
25377
diff
changeset
|
697 if(priv->config == NULL) |
19296 | 698 { |
699 free(priv); | |
700 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB CONFIGURATION IS EMPTY, exit\n"); | |
701 return STREAM_ERROR; | |
702 } | |
703 | |
21241
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
704 priv->card = -1; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
705 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
|
706 { |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
707 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
|
708 { |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
709 priv->card = i; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
710 break; |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
711 } |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
712 } |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
713 |
6e3fb3e851ac
match exactly card number N specified, rather than the N-th actually usable
nicodvb
parents:
21034
diff
changeset
|
714 if(priv->card == -1) |
19296 | 715 { |
716 free(priv); | |
717 mp_msg(MSGT_DEMUX, MSGL_ERR, "NO CONFIGURATION FOUND FOR CARD N. %d, exit\n", p->card); | |
718 return STREAM_ERROR; | |
719 } | |
720 priv->timeout = p->timeout; | |
721 | |
722 tuner_type = priv->config->cards[priv->card].type; | |
723 | |
724 if(tuner_type == 0) | |
725 { | |
726 free(priv); | |
727 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n"); | |
728 return STREAM_ERROR; | |
729 } | |
730 | |
731 | |
732 priv->tuner_type = tuner_type; | |
733 | |
734 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: prog=%s, card=%d, type=%d, vid=%d, aid=%d\n", | |
735 p->prog, priv->card+1, priv->tuner_type, p->vid, p->aid); | |
736 | |
737 priv->list = priv->config->cards[priv->card].list; | |
738 | |
739 if((! strcmp(p->prog, "")) && (priv->list != NULL)) | |
740 progname = priv->list->channels[0].name; | |
741 else | |
742 progname = p->prog; | |
743 | |
744 | |
25380
5857ec4dedb4
removed the obscene priv->stream entry. Someone must have injected vodka in my milk when I wrote it
nicodvb
parents:
25379
diff
changeset
|
745 if(! dvb_streaming_start(stream, p, tuner_type, progname)) |
19296 | 746 { |
747 free(stream->priv); | |
748 stream->priv = NULL; | |
749 return STREAM_ERROR; | |
750 } | |
751 | |
752 stream->type = STREAMTYPE_DVB; | |
753 stream->fill_buffer = dvb_streaming_read; | |
754 stream->close = dvbin_close; | |
755 m_struct_free(&stream_opts, opts); | |
756 | |
757 *file_format = DEMUXER_TYPE_MPEG_TS; | |
758 | |
759 return STREAM_OK; | |
760 } | |
761 | |
762 #define MAX_CARDS 4 | |
763 dvb_config_t *dvb_get_config(void) | |
764 { | |
765 int i, fd, type, size; | |
766 char filename[30], *conf_file, *name; | |
767 dvb_channels_list *list; | |
768 dvb_card_config_t *cards = NULL, *tmp; | |
769 dvb_config_t *conf = NULL; | |
770 | |
771 | |
23629 | 772 conf = malloc(sizeof(dvb_config_t)); |
19296 | 773 if(conf == NULL) |
774 return NULL; | |
775 | |
776 conf->priv = NULL; | |
777 conf->count = 0; | |
778 conf->cards = NULL; | |
779 for(i=0; i<MAX_CARDS; i++) | |
780 { | |
22402
963d93b2fe7c
replaced 2 instances of sprintf() with snprintf() and one instance
nicodvb
parents:
21977
diff
changeset
|
781 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
|
782 fd = open(filename, O_RDONLY|O_NONBLOCK); |
19296 | 783 if(fd < 0) |
784 { | |
785 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't open device %s, skipping\n", filename); | |
786 continue; | |
787 } | |
788 | |
789 type = dvb_get_tuner_type(fd); | |
790 close(fd); | |
791 if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC) | |
792 { | |
793 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't detect tuner type of card %d, skipping\n", i); | |
794 continue; | |
795 } | |
796 | |
797 switch(type) | |
798 { | |
799 case TUNER_TER: | |
800 conf_file = get_path("channels.conf.ter"); | |
801 break; | |
802 case TUNER_CBL: | |
803 conf_file = get_path("channels.conf.cbl"); | |
804 break; | |
805 case TUNER_SAT: | |
806 conf_file = get_path("channels.conf.sat"); | |
807 break; | |
808 case TUNER_ATSC: | |
809 conf_file = get_path("channels.conf.atsc"); | |
810 break; | |
811 } | |
812 | |
813 if((access(conf_file, F_OK | R_OK) != 0)) | |
25355
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
814 { |
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
815 if(conf_file) |
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
816 free(conf_file); |
19296 | 817 conf_file = get_path("channels.conf"); |
26123
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
818 if((access(conf_file, F_OK | R_OK) != 0)) |
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
819 { |
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
820 if(conf_file) |
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
821 free(conf_file); |
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
822 conf_file = strdup(MPLAYER_CONFDIR "/channels.conf"); |
37786c8469b2
search channels.conf in mplayer's instdir if all other searches fail; patch by foxcore gmail com
nicodvb
parents:
25692
diff
changeset
|
823 } |
25355
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
824 } |
19296 | 825 |
826 list = dvb_get_channels(conf_file, type); | |
25355
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
827 if(conf_file) |
3110688d2406
fix memleaks; patch by andrew calkin from gmail com
nicodvb
parents:
25242
diff
changeset
|
828 free(conf_file); |
19296 | 829 if(list == NULL) |
830 continue; | |
831 | |
832 size = sizeof(dvb_card_config_t) * (conf->count + 1); | |
833 tmp = realloc(conf->cards, size); | |
834 | |
835 if(tmp == NULL) | |
836 { | |
837 fprintf(stderr, "DVB_CONFIG, can't realloc %d bytes, skipping\n", size); | |
838 continue; | |
839 } | |
840 cards = tmp; | |
841 | |
23629 | 842 name = malloc(20); |
19296 | 843 if(name==NULL) |
844 { | |
845 fprintf(stderr, "DVB_CONFIG, can't realloc 20 bytes, skipping\n"); | |
846 continue; | |
847 } | |
848 | |
849 conf->cards = cards; | |
850 conf->cards[conf->count].devno = i; | |
851 conf->cards[conf->count].list = list; | |
852 conf->cards[conf->count].type = type; | |
22402
963d93b2fe7c
replaced 2 instances of sprintf() with snprintf() and one instance
nicodvb
parents:
21977
diff
changeset
|
853 snprintf(name, 20, "DVB-%c card n. %d", type==TUNER_TER ? 'T' : (type==TUNER_CBL ? 'C' : 'S'), conf->count+1); |
19296 | 854 conf->cards[conf->count].name = name; |
855 conf->count++; | |
856 } | |
857 | |
858 if(conf->count == 0) | |
859 { | |
860 free(conf); | |
861 conf = NULL; | |
862 } | |
863 | |
864 return conf; | |
865 } | |
866 | |
867 | |
868 | |
25211 | 869 const stream_info_t stream_info_dvb = { |
19296 | 870 "Dvb Input", |
871 "dvbin", | |
872 "Nico", | |
873 "based on the code from ??? (probably Arpi)", | |
874 dvb_open, | |
875 { "dvb", NULL }, | |
876 &stream_opts, | |
877 1 // Urls are an option string | |
878 }; |