Mercurial > mplayer.hg
annotate libmpdemux/dvbin.c @ 15129:2075e798f6f2
Typo noticed by Rich
author | gpoirier |
---|---|
date | Mon, 11 Apr 2005 21:39:46 +0000 |
parents | 42d792053cde |
children | 8dd7a656eaf8 |
rev | line source |
---|---|
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 { | |
12108
06c4780332bc
disallow non-sense type parameter; added support for absolute file path; prefer channels.conf.{sat,ter,cbl} over channels.conf if the file is available
nicodvb
parents:
12047
diff
changeset
|
67 "", 1, "", 0, 0, NULL |
10560 | 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 }, | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
82 {"username", ST_OFF(card), CONF_TYPE_INT, M_OPT_RANGE, 1, 4, NULL}, |
10560 | 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}, | |
12108
06c4780332bc
disallow non-sense type parameter; added support for absolute file path; prefer channels.conf.{sat,ter,cbl} over channels.conf if the file is available
nicodvb
parents:
12047
diff
changeset
|
98 {"type", "DVB card type is autodetected and can't be overridden\n", CONF_TYPE_PRINT, CONF_NOCFG, 0 ,0, NULL}, |
10560 | 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); | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
111 extern int dvb_get_tuner_type(int fd); |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
112 int dvb_open_devices(dvb_priv_t *priv, int n, int demux_cnt, int *pids); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
113 int dvb_fix_demuxes(dvb_priv_t *priv, int cnt, int *pids); |
10560 | 114 |
9610 | 115 extern int dvb_tune(dvb_priv_t *priv, int freq, char pol, int srate, int diseqc, int tone, |
116 fe_spectral_inversion_t specInv, fe_modulation_t modulation, fe_guard_interval_t guardInterval, | |
13155
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
117 fe_transmit_mode_t TransmissionMode, fe_bandwidth_t bandWidth, fe_code_rate_t HP_CodeRate, |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
118 fe_code_rate_t LP_CodeRate, fe_hierarchy_t hier); |
11872
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
119 extern char *dvb_dvrdev[4], *dvb_demuxdev[4], *dvb_frontenddev[4]; |
10560 | 120 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
121 static dvb_config_t *dvb_config = NULL; |
9610 | 122 |
123 | |
10560 | 124 static dvb_channels_list *dvb_get_channels(char *filename, int type) |
9610 | 125 { |
126 dvb_channels_list *list; | |
127 FILE *f; | |
10560 | 128 uint8_t line[CHANNEL_LINE_LEN]; |
129 | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
130 int fields, cnt, pcnt; |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
131 dvb_channel_t *ptr, *tmp, chn; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
132 char *tmp_lcr, *tmp_hier, *inv, *bw, *cr, *mod, *transm, *gi, *vpid_str, *apid_str; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
133 const char *cbl_conf = "%a[^:]:%d:%a[^:]:%d:%a[^:]:%a[^:]:%a[^:]:%a[^:]\n"; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
134 const char *sat_conf = "%a[^:]:%d:%c:%d:%d:%a[^:]:%a[^:]\n"; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
135 const char *ter_conf = "%a[^:]:%d:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]:%a[^:]\n"; |
14382 | 136 const char *atsc_conf = "%a[^:]:%d:%a[^:]:%a[^:]:%a[^:]\n"; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
137 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
138 mp_msg(MSGT_DEMUX, MSGL_V, "CONFIG_READ FILE: %s, type: %d\n", filename, type); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
139 if((f=fopen(filename, "r"))==NULL) |
10560 | 140 { |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
141 mp_msg(MSGT_DEMUX, MSGL_FATAL, "CAN'T READ CONFIG FILE %s\n", filename); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
142 return NULL; |
10560 | 143 } |
144 | |
9610 | 145 list = malloc(sizeof(dvb_channels_list)); |
146 if(list == NULL) | |
147 { | |
148 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_GET_CHANNELS: couldn't malloc enough memory\n"); | |
149 return NULL; | |
150 } | |
151 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
152 ptr = &chn; |
9610 | 153 list->NUM_CHANNELS = 0; |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
154 list->channels = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
155 while(! feof(f)) |
9610 | 156 { |
10708 | 157 if( fgets(line, CHANNEL_LINE_LEN, f) == NULL ) |
158 continue; | |
9610 | 159 |
10708 | 160 if((line[0] == '#') || (strlen(line) == 0)) |
10560 | 161 continue; |
9610 | 162 |
163 | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
164 apid_str = vpid_str = NULL; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
165 ptr->pids_cnt = 0; |
10560 | 166 if(type == TUNER_TER) |
9610 | 167 { |
168 fields = sscanf(line, ter_conf, | |
10560 | 169 &ptr->name, &ptr->freq, &inv, &bw, &cr, &tmp_lcr, &mod, |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
170 &transm, &gi, &tmp_hier, &vpid_str, &apid_str); |
10708 | 171 mp_msg(MSGT_DEMUX, MSGL_V, |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
172 "TER, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d", |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
173 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); |
10560 | 174 } |
175 else if(type == TUNER_CBL) | |
176 { | |
177 fields = sscanf(line, cbl_conf, | |
178 &ptr->name, &ptr->freq, &inv, &ptr->srate, | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
179 &cr, &mod, &vpid_str, &apid_str); |
10708 | 180 mp_msg(MSGT_DEMUX, MSGL_V, |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
181 "CBL, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d", |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
182 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate); |
10560 | 183 } |
14382 | 184 #ifdef DVB_ATSC |
185 else if(type == TUNER_ATSC) | |
186 { | |
187 fields = sscanf(line, atsc_conf, | |
188 &ptr->name, &ptr->freq, &mod, &vpid_str, &apid_str); | |
189 mp_msg(MSGT_DEMUX, MSGL_V, | |
190 "ATSC, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d\n", | |
191 list->NUM_CHANNELS, fields, ptr->name, ptr->freq); | |
192 } | |
193 #endif | |
10560 | 194 else //SATELLITE |
195 { | |
196 fields = sscanf(line, sat_conf, | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
197 &ptr->name, &ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, &vpid_str, &apid_str); |
10560 | 198 ptr->pol = toupper(ptr->pol); |
199 ptr->freq *= 1000UL; | |
200 ptr->srate *= 1000UL; | |
201 ptr->tone = -1; | |
12047
6fbcdac049c6
added missing tuning parameters (inversion and coderate) and changed debug level in dvb_streaming_read()
nicodvb
parents:
11872
diff
changeset
|
202 ptr->inv = INVERSION_AUTO; |
6fbcdac049c6
added missing tuning parameters (inversion and coderate) and changed debug level in dvb_streaming_read()
nicodvb
parents:
11872
diff
changeset
|
203 ptr->cr = FEC_AUTO; |
12116 | 204 if((ptr->diseqc > 4) || (ptr->diseqc < 0)) |
12047
6fbcdac049c6
added missing tuning parameters (inversion and coderate) and changed debug level in dvb_streaming_read()
nicodvb
parents:
11872
diff
changeset
|
205 continue; |
12116 | 206 if(ptr->diseqc > 0) |
207 ptr->diseqc--; | |
10560 | 208 mp_msg(MSGT_DEMUX, MSGL_V, |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
209 "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d", |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
210 list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc); |
10560 | 211 } |
9610 | 212 |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
213 if(vpid_str != NULL) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
214 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
215 pcnt = sscanf(vpid_str, "%d+%d+%d+%d+%d+%d+%d", &ptr->pids[0], &ptr->pids[1], &ptr->pids[2], &ptr->pids[3], |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
216 &ptr->pids[4], &ptr->pids[5], &ptr->pids[6]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
217 if(pcnt > 0) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
218 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
219 ptr->pids_cnt = pcnt; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
220 fields++; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
221 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
222 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
223 |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
224 if(apid_str != NULL) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
225 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
226 cnt = ptr->pids_cnt; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
227 pcnt = sscanf(apid_str, "%d+%d+%d+%d+%d+%d+%d+%d", &ptr->pids[cnt], &ptr->pids[cnt+1], &ptr->pids[cnt+2], |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
228 &ptr->pids[cnt+3], &ptr->pids[cnt+4], &ptr->pids[cnt+5], &ptr->pids[cnt+6], &ptr->pids[cnt+7]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
229 if(pcnt > 0) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
230 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
231 ptr->pids_cnt += pcnt; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
232 fields++; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
233 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
234 } |
10560 | 235 |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
236 if((fields < 3) || (ptr->pids_cnt <= 0) || (ptr->freq == 0) || (strlen(ptr->name) == 0)) |
10708 | 237 continue; |
238 | |
239 | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
240 ptr->pids[ptr->pids_cnt] = 0; //PID 0 is the PAT |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
241 ptr->pids_cnt++; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
242 mp_msg(MSGT_DEMUX, MSGL_V, " PIDS: "); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
243 for(cnt = 0; cnt < ptr->pids_cnt; cnt++) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
244 mp_msg(MSGT_DEMUX, MSGL_V, " %d ", ptr->pids[cnt]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
245 mp_msg(MSGT_DEMUX, MSGL_V, "\n"); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
246 |
10560 | 247 if((type == TUNER_TER) || (type == TUNER_CBL)) |
248 { | |
9610 | 249 if(! strcmp(inv, "INVERSION_ON")) |
250 ptr->inv = INVERSION_ON; | |
251 else if(! strcmp(inv, "INVERSION_OFF")) | |
252 ptr->inv = INVERSION_OFF; | |
253 else | |
254 ptr->inv = INVERSION_AUTO; | |
255 | |
256 | |
257 if(! strcmp(cr, "FEC_1_2")) | |
258 ptr->cr =FEC_1_2; | |
259 else if(! strcmp(cr, "FEC_2_3")) | |
260 ptr->cr =FEC_2_3; | |
261 else if(! strcmp(cr, "FEC_3_4")) | |
262 ptr->cr =FEC_3_4; | |
263 #ifdef HAVE_DVB_HEAD | |
264 else if(! strcmp(cr, "FEC_4_5")) | |
265 ptr->cr =FEC_4_5; | |
266 else if(! strcmp(cr, "FEC_6_7")) | |
267 ptr->cr =FEC_6_7; | |
268 else if(! strcmp(cr, "FEC_8_9")) | |
269 ptr->cr =FEC_8_9; | |
270 #endif | |
271 else if(! strcmp(cr, "FEC_5_6")) | |
272 ptr->cr =FEC_5_6; | |
273 else if(! strcmp(cr, "FEC_7_8")) | |
274 ptr->cr =FEC_7_8; | |
275 else if(! strcmp(cr, "FEC_NONE")) | |
276 ptr->cr =FEC_NONE; | |
277 else ptr->cr =FEC_AUTO; | |
14382 | 278 } |
279 | |
9610 | 280 |
14382 | 281 if((type == TUNER_TER) || (type == TUNER_CBL) || (type == TUNER_ATSC)) |
282 { | |
9610 | 283 if(! strcmp(mod, "QAM_128")) |
284 ptr->mod = QAM_128; | |
285 else if(! strcmp(mod, "QAM_256")) | |
286 ptr->mod = QAM_256; | |
287 else if(! strcmp(mod, "QAM_64")) | |
288 ptr->mod = QAM_64; | |
289 else if(! strcmp(mod, "QAM_32")) | |
290 ptr->mod = QAM_32; | |
291 else if(! strcmp(mod, "QAM_16")) | |
292 ptr->mod = QAM_16; | |
14382 | 293 #ifdef DVB_ATSC |
294 else if(! strcmp(mod, "VSB_8") || ! strcmp(mod, "8VSB")) | |
295 ptr->mod = VSB_8; | |
296 else if(! strcmp(mod, "VSB_16") || !strcmp(mod, "16VSB")) | |
297 ptr->mod = VSB_16; | |
298 | |
299 ptr->inv = INVERSION_AUTO; | |
300 #endif | |
10560 | 301 } |
302 | |
303 if(type == TUNER_TER) | |
304 { | |
305 if(! strcmp(bw, "BANDWIDTH_6_MHZ")) | |
306 ptr->bw = BANDWIDTH_6_MHZ; | |
307 else if(! strcmp(bw, "BANDWIDTH_7_MHZ")) | |
308 ptr->bw = BANDWIDTH_7_MHZ; | |
309 else if(! strcmp(bw, "BANDWIDTH_8_MHZ")) | |
310 ptr->bw = BANDWIDTH_8_MHZ; | |
9610 | 311 |
312 | |
313 if(! strcmp(transm, "TRANSMISSION_MODE_2K")) | |
314 ptr->trans = TRANSMISSION_MODE_2K; | |
315 else if(! strcmp(transm, "TRANSMISSION_MODE_8K")) | |
316 ptr->trans = TRANSMISSION_MODE_8K; | |
317 | |
10560 | 318 |
9610 | 319 if(! strcmp(gi, "GUARD_INTERVAL_1_32")) |
320 ptr->gi = GUARD_INTERVAL_1_32; | |
321 else if(! strcmp(gi, "GUARD_INTERVAL_1_16")) | |
322 ptr->gi = GUARD_INTERVAL_1_16; | |
323 else if(! strcmp(gi, "GUARD_INTERVAL_1_8")) | |
324 ptr->gi = GUARD_INTERVAL_1_8; | |
325 else ptr->gi = GUARD_INTERVAL_1_4; | |
13155
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
326 |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
327 if(! strcmp(tmp_lcr, "FEC_1_2")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
328 ptr->cr_lp =FEC_1_2; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
329 else if(! strcmp(tmp_lcr, "FEC_2_3")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
330 ptr->cr_lp =FEC_2_3; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
331 else if(! strcmp(tmp_lcr, "FEC_3_4")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
332 ptr->cr_lp =FEC_3_4; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
333 #ifdef HAVE_DVB_HEAD |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
334 else if(! strcmp(tmp_lcr, "FEC_4_5")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
335 ptr->cr_lp =FEC_4_5; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
336 else if(! strcmp(tmp_lcr, "FEC_6_7")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
337 ptr->cr_lp =FEC_6_7; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
338 else if(! strcmp(tmp_lcr, "FEC_8_9")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
339 ptr->cr_lp =FEC_8_9; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
340 #endif |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
341 else if(! strcmp(tmp_lcr, "FEC_5_6")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
342 ptr->cr_lp =FEC_5_6; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
343 else if(! strcmp(tmp_lcr, "FEC_7_8")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
344 ptr->cr_lp =FEC_7_8; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
345 else if(! strcmp(tmp_lcr, "FEC_NONE")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
346 ptr->cr_lp =FEC_NONE; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
347 else ptr->cr_lp =FEC_AUTO; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
348 |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
349 |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
350 if(! strcmp(tmp_hier, "HIERARCHY_1")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
351 ptr->hier = HIERARCHY_1; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
352 else if(! strcmp(tmp_hier, "HIERARCHY_2")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
353 ptr->hier = HIERARCHY_2; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
354 else if(! strcmp(tmp_hier, "HIERARCHY_4")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
355 ptr->hier = HIERARCHY_4; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
356 #ifdef HAVE_DVB_HEAD |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
357 else if(! strcmp(tmp_hier, "HIERARCHY_AUTO")) |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
358 ptr->hier = HIERARCHY_AUTO; |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
359 #endif |
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
360 else ptr->hier = HIERARCHY_NONE; |
9610 | 361 } |
362 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
363 tmp = (dvb_channel_t*)realloc(list->channels, sizeof(dvb_channel_t) * (list->NUM_CHANNELS + 1)); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
364 if(tmp == NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
365 break; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
366 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
367 list->channels = tmp; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
368 memcpy(&(list->channels[list->NUM_CHANNELS]), ptr, sizeof(dvb_channel_t)); |
9610 | 369 list->NUM_CHANNELS++; |
370 } | |
371 | |
372 fclose(f); | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
373 if(list->NUM_CHANNELS == 0) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
374 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
375 if(list->channels != NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
376 free(list->channels); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
377 free(list); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
378 return NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
379 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
380 |
10560 | 381 list->current = 0; |
9610 | 382 return list; |
383 } | |
384 | |
385 | |
386 | |
10560 | 387 static int dvb_streaming_read(stream_t *stream, char *buffer, int size) |
9610 | 388 { |
389 struct pollfd pfds[1]; | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
390 int pos=0, tries, rk, fd; |
10560 | 391 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; |
9610 | 392 |
12047
6fbcdac049c6
added missing tuning parameters (inversion and coderate) and changed debug level in dvb_streaming_read()
nicodvb
parents:
11872
diff
changeset
|
393 mp_msg(MSGT_DEMUX, MSGL_DBG3, "dvb_streaming_read(%d)\n", size); |
9610 | 394 |
11352 | 395 tries = priv->retry + 1; |
396 | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
397 fd = stream->fd; |
9610 | 398 while(pos < size) |
399 { | |
10560 | 400 pfds[0].fd = fd; |
401 pfds[0].events = POLLIN | POLLPRI; | |
9610 | 402 |
10560 | 403 poll(pfds, 1, 500); |
404 rk = size - pos; | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
405 if((rk = read(fd, &buffer[pos], rk)) > 0) |
10560 | 406 { |
407 pos += rk; | |
12047
6fbcdac049c6
added missing tuning parameters (inversion and coderate) and changed debug level in dvb_streaming_read()
nicodvb
parents:
11872
diff
changeset
|
408 mp_msg(MSGT_DEMUX, MSGL_DBG3, "ret (%d) bytes\n", pos); |
10560 | 409 } |
410 else | |
411 { | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
412 errno = 0; |
10560 | 413 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); |
414 if(--tries > 0) | |
415 continue; | |
416 else | |
417 break; | |
418 } | |
419 } | |
9610 | 420 |
10560 | 421 if(! pos) |
422 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_streaming_read, return %d bytes\n", pos); | |
9610 | 423 |
424 return pos; | |
425 } | |
426 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
427 static void dvbin_close(stream_t *stream); |
10560 | 428 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
429 int dvb_set_channel(dvb_priv_t *priv, int card, int n) |
10560 | 430 { |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
431 dvb_channels_list *new_list; |
10560 | 432 dvb_channel_t *channel; |
433 int do_tuning; | |
434 stream_t *stream = (stream_t*) priv->stream; | |
435 char buf[4096]; | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
436 dvb_config_t *conf = (dvb_config_t *) priv->config; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
437 int devno; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
438 int i; |
9610 | 439 |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
440 if((card < 0) || (card > conf->count)) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
441 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
442 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CARD NUMBER: %d vs %d, abort\n", card, conf->count); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
443 return 0; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
444 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
445 |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
446 devno = conf->cards[card].devno; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
447 new_list = conf->cards[card].list; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
448 if((n > new_list->NUM_CHANNELS) || (n < 0)) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
449 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
450 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, for card %d, abort\n", n, card); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
451 return 0; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
452 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
453 channel = &(new_list->channels[n]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
454 |
10560 | 455 if(priv->is_on) //the fds are already open and we have to stop the demuxers |
456 { | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
457 for(i = 0; i < priv->demux_fds_cnt; i++) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
458 dvb_demux_stop(priv->demux_fds[i]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
459 |
10560 | 460 priv->retry = 0; |
11352 | 461 while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
462 if(priv->card != card) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
463 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
464 dvbin_close(stream); |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
465 if(! dvb_open_devices(priv, devno, channel->pids_cnt, channel->pids)) |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
466 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
467 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
468 return 0; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
469 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
470 strcpy(priv->prev_tuning, ""); |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
471 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
472 else //close all demux_fds with pos > pids required for the new channel or open other demux_fds if we have too few |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
473 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
474 if(! dvb_fix_demuxes(priv, channel->pids_cnt, channel->pids)) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
475 return 0; |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
476 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
477 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
478 else |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
479 { |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
480 if(! dvb_open_devices(priv, devno, channel->pids_cnt, channel->pids)) |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
481 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
482 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB_SET_CHANNEL2, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
483 return 0; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
484 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
485 strcpy(priv->prev_tuning, ""); |
10560 | 486 } |
487 | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
488 dvb_config->priv = priv; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
489 priv->card = card; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
490 priv->list = new_list; |
11352 | 491 priv->retry = 5; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
492 new_list->current = n; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
493 stream->fd = priv->dvr_fd; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
494 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_SET_CHANNEL: new channel name=%s, card: %d, channel %d\n", channel->name, card, n); |
10560 | 495 |
496 switch(priv->tuner_type) | |
497 { | |
498 case TUNER_SAT: | |
499 sprintf(priv->new_tuning, "%d|%09d|%09d|%d|%c", priv->card, channel->freq, channel->srate, channel->diseqc, channel->pol); | |
500 break; | |
9610 | 501 |
10560 | 502 case TUNER_TER: |
503 sprintf(priv->new_tuning, "%d|%09d|%d|%d|%d|%d|%d|%d", priv->card, channel->freq, channel->inv, | |
504 channel->bw, channel->cr, channel->mod, channel->trans, channel->gi); | |
505 break; | |
506 | |
507 case TUNER_CBL: | |
508 sprintf(priv->new_tuning, "%d|%09d|%d|%d|%d|%d", priv->card, channel->freq, channel->inv, channel->srate, | |
509 channel->cr, channel->mod); | |
510 break; | |
14382 | 511 #ifdef DVB_ATSC |
512 case TUNER_ATSC: | |
513 sprintf(priv->new_tuning, "%d|%09d|%d", priv->card, channel->freq, channel->mod); | |
514 break; | |
515 #endif | |
10560 | 516 } |
517 | |
518 | |
9610 | 519 |
10560 | 520 if(strcmp(priv->prev_tuning, priv->new_tuning)) |
521 { | |
522 mp_msg(MSGT_DEMUX, MSGL_V, "DIFFERENT TUNING THAN THE PREVIOUS: %s -> %s\n", priv->prev_tuning, priv->new_tuning); | |
523 strcpy(priv->prev_tuning, priv->new_tuning); | |
524 do_tuning = 1; | |
525 } | |
526 else | |
527 { | |
11352 | 528 mp_msg(MSGT_DEMUX, MSGL_V, "SAME TUNING PARAMETERS, NO TUNING\n"); |
10560 | 529 do_tuning = 0; |
530 } | |
531 | |
532 stream->eof=1; | |
533 stream_reset(stream); | |
534 | |
9610 | 535 |
10560 | 536 if(do_tuning) |
537 if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone, | |
13155
fd40ef23053b
added forgotten dvb-t params lp_coderate and hierarchy
nicodvb
parents:
12803
diff
changeset
|
538 channel->inv, channel->mod, channel->gi, channel->trans, channel->bw, channel->cr, channel->cr_lp, channel->hier)) |
10560 | 539 return 0; |
540 | |
541 | |
542 priv->is_on = 1; | |
543 | |
544 //sets demux filters and restart the stream | |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
545 for(i = 0; i < channel->pids_cnt; i++) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
546 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
547 if(! dvb_set_ts_filt(priv->demux_fds[i], channel->pids[i], DMX_PES_OTHER)) |
10560 | 548 return 0; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
549 } |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
550 |
10560 | 551 return 1; |
552 } | |
553 | |
554 | |
9610 | 555 |
10560 | 556 int dvb_step_channel(dvb_priv_t *priv, int dir) |
557 { | |
558 int new_current; | |
559 dvb_channels_list *list; | |
560 | |
561 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_STEP_CHANNEL dir %d\n", dir); | |
9610 | 562 |
10560 | 563 if(priv == NULL) |
564 { | |
565 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL priv_ptr, quit\n"); | |
566 return 0; | |
567 } | |
9610 | 568 |
10560 | 569 list = priv->list; |
570 if(list == NULL) | |
571 { | |
572 mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_step_channel: NULL list_ptr, quit\n"); | |
573 return 0; | |
574 } | |
9610 | 575 |
10560 | 576 |
577 if(dir == DVB_CHANNEL_HIGHER) | |
578 { | |
579 if(list->current == list->NUM_CHANNELS-1) | |
580 return 0; | |
9610 | 581 |
10560 | 582 new_current = list->current + 1; |
583 } | |
584 else | |
585 { | |
586 if(list->current == 0) | |
587 return 0; | |
9610 | 588 |
10560 | 589 new_current = list->current - 1; |
590 } | |
591 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
592 return dvb_set_channel(priv, priv->card, new_current); |
9610 | 593 } |
594 | |
595 | |
10560 | 596 |
597 | |
9610 | 598 extern char *get_path(char *); |
599 | |
10560 | 600 static void dvbin_close(stream_t *stream) |
9610 | 601 { |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
602 int i; |
10560 | 603 dvb_priv_t *priv = (dvb_priv_t *) stream->priv; |
9610 | 604 |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
605 for(i = priv->demux_fds_cnt-1; i >= 0; i--) |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
606 { |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
607 priv->demux_fds_cnt--; |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
608 mp_msg(MSGT_DEMUX, MSGL_V, "DVBIN_CLOSE, close(%d), fd=%d, COUNT=%d\n", i, priv->demux_fds[i], priv->demux_fds_cnt); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
609 close(priv->demux_fds[i]); |
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
610 } |
10560 | 611 close(priv->dvr_fd); |
11872
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
612 |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
613 close(priv->fe_fd); |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
614 #ifdef HAVE_DVB |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
615 close(priv->sec_fd); |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
616 #endif |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
617 |
10560 | 618 priv->is_on = 0; |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
619 dvb_config->priv = NULL; |
10560 | 620 } |
9610 | 621 |
622 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
623 static int dvb_streaming_start(dvb_priv_t *priv, struct stream_priv_s *opts, int tuner_type, char *progname) |
10560 | 624 { |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
625 int i; |
10560 | 626 dvb_channel_t *channel = NULL; |
627 stream_t *stream = (stream_t*) priv->stream; | |
9610 | 628 |
629 | |
630 mp_msg(MSGT_DEMUX, MSGL_INFO, "code taken from dvbstream for mplayer v0.4pre1 - (C) Dave Chapman 2001\n"); | |
631 mp_msg(MSGT_DEMUX, MSGL_INFO, "Released under the GPL.\n"); | |
632 mp_msg(MSGT_DEMUX, MSGL_INFO, "Latest version available from http://www.linuxstb.org/\n"); | |
10560 | 633 mp_msg(MSGT_DEMUX, MSGL_V, "PROG: %s, CARD: %d, VID: %d, AID: %d, TYPE: %s, FILE: %s\n", |
634 opts->prog, opts->card, opts->vid, opts->aid, opts->type, opts->file); | |
9610 | 635 |
10560 | 636 priv->is_on = 0; |
9610 | 637 |
10560 | 638 i = 0; |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
639 while((channel == NULL) && i < priv->list->NUM_CHANNELS) |
10560 | 640 { |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
641 if(! strcmp(priv->list->channels[i].name, progname)) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
642 channel = &(priv->list->channels[i]); |
9610 | 643 |
10560 | 644 i++; |
645 } | |
9610 | 646 |
10560 | 647 if(channel != NULL) |
648 { | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
649 priv->list->current = i-1; |
12803
168238f8c715
added multi-pid parsing code (up to 15), pid 0 is always added (for the PAT)
nicodvb
parents:
12307
diff
changeset
|
650 mp_msg(MSGT_DEMUX, MSGL_V, "PROGRAM NUMBER %d: name=%s, freq=%u\n", i-1, channel->name, channel->freq); |
10560 | 651 } |
652 else | |
653 { | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
654 mp_msg(MSGT_DEMUX, MSGL_ERR, "\n\nDVBIN: no such channel \"%s\"\n\n", progname); |
10560 | 655 return 0; |
9610 | 656 } |
657 | |
658 | |
10560 | 659 strcpy(priv->prev_tuning, ""); |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
660 if(!dvb_set_channel(priv, priv->card, priv->list->current)) |
10560 | 661 { |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
662 mp_msg(MSGT_DEMUX, MSGL_ERR, "ERROR, COULDN'T SET CHANNEL %i: ", priv->list->current); |
10560 | 663 dvbin_close(stream); |
664 return 0; | |
665 } | |
666 | |
667 mp_msg(MSGT_DEMUX, MSGL_V, "SUCCESSFUL EXIT from dvb_streaming_start\n"); | |
9610 | 668 |
669 return 1; | |
670 } | |
671 | |
672 | |
10560 | 673 |
674 | |
675 static int dvb_open(stream_t *stream, int mode, void *opts, int *file_format) | |
9610 | 676 { |
10560 | 677 // I don't force the file format bacause, although it's almost always TS, |
678 // there are some providers that stream an IP multicast with M$ Mpeg4 inside | |
679 struct stream_priv_s* p = (struct stream_priv_s*)opts; | |
680 dvb_priv_t *priv; | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
681 char *progname; |
11352 | 682 int tuner_type = 0; |
10560 | 683 |
684 | |
685 if(mode != STREAM_READ) | |
686 return STREAM_UNSUPORTED; | |
687 | |
688 stream->priv = (dvb_priv_t*) malloc(sizeof(dvb_priv_t)); | |
689 if(stream->priv == NULL) | |
690 return STREAM_ERROR; | |
691 | |
692 priv = (dvb_priv_t *)stream->priv; | |
693 priv->stream = stream; | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
694 dvb_config = dvb_get_config(); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
695 if(dvb_config == NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
696 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
697 free(priv); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
698 mp_msg(MSGT_DEMUX, MSGL_ERR, "DVB CONFIGURATION IS EMPTY, exit\n"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
699 return STREAM_ERROR; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
700 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
701 dvb_config->priv = priv; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
702 priv->config = dvb_config; |
10560 | 703 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
704 if(p->card < 1 || p->card > priv->config->count) |
11872
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
705 { |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
706 free(priv); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
707 mp_msg(MSGT_DEMUX, MSGL_ERR, "NO CONFIGURATION FOUND FOR CARD N. %d, exit\n", p->card); |
11872
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
708 return STREAM_ERROR; |
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
709 } |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
710 priv->card = p->card - 1; |
11872
d158978a3d3c
Compliance with the DVB power management specification (doesn't close
attila
parents:
11352
diff
changeset
|
711 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
712 tuner_type = priv->config->cards[priv->card].type; |
10560 | 713 |
11352 | 714 if(tuner_type == 0) |
715 { | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
716 free(priv); |
11352 | 717 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n"); |
718 return STREAM_ERROR; | |
719 } | |
720 | |
721 | |
10560 | 722 priv->tuner_type = tuner_type; |
723 | |
12108
06c4780332bc
disallow non-sense type parameter; added support for absolute file path; prefer channels.conf.{sat,ter,cbl} over channels.conf if the file is available
nicodvb
parents:
12047
diff
changeset
|
724 mp_msg(MSGT_DEMUX, MSGL_V, "OPEN_DVB: prog=%s, card=%d, type=%d, vid=%d, aid=%d\n", |
06c4780332bc
disallow non-sense type parameter; added support for absolute file path; prefer channels.conf.{sat,ter,cbl} over channels.conf if the file is available
nicodvb
parents:
12047
diff
changeset
|
725 p->prog, priv->card+1, priv->tuner_type, p->vid, p->aid); |
10560 | 726 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
727 priv->list = priv->config->cards[priv->card].list; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
728 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
729 if((! strcmp(p->prog, "")) && (priv->list != NULL)) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
730 progname = priv->list->channels[0].name; |
10560 | 731 else |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
732 progname = p->prog; |
10560 | 733 |
734 | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
735 if(! dvb_streaming_start(priv, p, tuner_type, progname)) |
10560 | 736 { |
737 free(stream->priv); | |
738 stream->priv = NULL; | |
739 return STREAM_ERROR; | |
740 } | |
741 | |
742 stream->type = STREAMTYPE_DVB; | |
743 stream->fill_buffer = dvb_streaming_read; | |
744 stream->close = dvbin_close; | |
745 m_struct_free(&stream_opts, opts); | |
746 | |
747 return STREAM_OK; | |
9610 | 748 } |
10560 | 749 |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
750 #define MAX_CARDS 4 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
751 dvb_config_t *dvb_get_config() |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
752 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
753 int i, fd, type, size; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
754 char filename[30], *conf_file, *name; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
755 dvb_channels_list *list; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
756 dvb_card_config_t *cards = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
757 dvb_config_t *conf = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
758 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
759 if(dvb_config != NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
760 return dvb_config; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
761 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
762 conf = (dvb_config_t*) malloc(sizeof(dvb_config_t)); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
763 if(conf == NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
764 return NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
765 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
766 conf->priv = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
767 conf->count = 0; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
768 conf->cards = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
769 for(i=0; i<MAX_CARDS; i++) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
770 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
771 sprintf(filename, "/dev/dvb/adapter%d/frontend0", i); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
772 fd = open(filename, O_RDWR | O_NONBLOCK); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
773 if(fd < 0) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
774 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
775 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't open device %s, skipping\n", filename); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
776 continue; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
777 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
778 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
779 type = dvb_get_tuner_type(fd); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
780 close(fd); |
14382 | 781 if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC) |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
782 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
783 mp_msg(MSGT_DEMUX, MSGL_V, "DVB_CONFIG, can't detect tuner type of card %d, skipping\n", i); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
784 continue; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
785 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
786 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
787 switch(type) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
788 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
789 case TUNER_TER: |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
790 conf_file = get_path("channels.conf.ter"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
791 break; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
792 case TUNER_CBL: |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
793 conf_file = get_path("channels.conf.cbl"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
794 break; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
795 case TUNER_SAT: |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
796 conf_file = get_path("channels.conf.sat"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
797 break; |
14382 | 798 case TUNER_ATSC: |
799 conf_file = get_path("channels.conf.atsc"); | |
800 break; | |
12307
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
801 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
802 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
803 if((access(conf_file, F_OK | R_OK) != 0)) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
804 conf_file = get_path("channels.conf"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
805 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
806 list = dvb_get_channels(conf_file, type); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
807 if(list == NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
808 continue; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
809 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
810 size = sizeof(dvb_card_config_t) * (conf->count + 1); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
811 cards = realloc(conf->cards, size); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
812 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
813 if(cards == NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
814 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
815 fprintf(stderr, "DVB_CONFIG, can't realloc %d bytes, skipping\n", size); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
816 continue; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
817 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
818 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
819 name = (char*) malloc(20); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
820 if(name==NULL) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
821 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
822 fprintf(stderr, "DVB_CONFIG, can't realloc 20 bytes, skipping\n"); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
823 continue; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
824 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
825 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
826 conf->cards = cards; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
827 conf->cards[conf->count].devno = i; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
828 conf->cards[conf->count].list = list; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
829 conf->cards[conf->count].type = type; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
830 sprintf(name, "DVB-%c card n. %d", type==TUNER_TER ? 'T' : (type==TUNER_CBL ? 'C' : 'S'), conf->count+1); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
831 conf->cards[conf->count].name = name; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
832 conf->count++; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
833 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
834 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
835 if(conf->count == 0) |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
836 { |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
837 free(conf); |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
838 conf = NULL; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
839 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
840 |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
841 dvb_config = conf; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
842 return conf; |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
843 } |
44152bfdc002
new configuration structure, dvb_set_channel takes 2 parameters, 1000l memleak fix
nicodvb
parents:
12116
diff
changeset
|
844 |
10560 | 845 |
846 | |
847 stream_info_t stream_info_dvb = { | |
848 "Dvb Input", | |
849 "dvbin", | |
850 "Nico", | |
851 "based on the code from ??? (probably Arpi)", | |
852 dvb_open, | |
853 { "dvb", NULL }, | |
854 &stream_opts, | |
855 1 // Urls are an option string | |
856 }; | |
857 | |
858 | |
859 | |
860 |