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