-
Notifications
You must be signed in to change notification settings - Fork 6
/
dvbscan.c
501 lines (402 loc) · 15.6 KB
/
dvbscan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/*
* Simple MPEG/DVB parser to achieve network/service information without initial tuning data
*
* Copyright (C) 2006, 2007, 2008, 2009 Winfried Koehler
* Copyright (C) 2017 - 2020 mighty-p
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* The project's page is https://github.com/mighty-p/t2scan
*/
#include <strings.h>
#include "extended_frontend.h"
#include "scan.h"
#include "dvbscan.h"
#define STRUCT_COUNT(struct_list) (sizeof(struct_list)/sizeof(struct init_item))
/********************************************************************
* dvbscan.c
*
* import / export of initial_tuning_data for dvbscan
* see doc/README.file_formats
*
********************************************************************/
/********************************************************************
* DVB-T
********************************************************************/
struct init_item terr_bw_list[] = {
{"8MHz" , 8000000 },
{"7MHz" , 7000000 },
{"6MHz" , 6000000 },
{"5MHz" , 5000000 },
{"10MHz" , 10000000 },
{"1.712MHz" , 1712000 },
{"AUTO" , 8000000 }
};
struct init_item terr_fec_list[] = {
{"NONE" , FEC_NONE },
{"1/2" , FEC_1_2 },
{"2/3" , FEC_2_3 },
{"3/4" , FEC_3_4 },
{"4/5" , FEC_4_5 },
{"5/6" , FEC_5_6 },
{"6/7" , FEC_6_7 },
{"7/8" , FEC_7_8 },
{"3/5" , FEC_3_5 },
{"4/5" , FEC_4_5 },
{"AUTO" , FEC_AUTO }
};
struct init_item terr_mod_list[] = {
{"QPSK" , QPSK },
{"QAM16" , QAM_16 },
{"QAM64" , QAM_64 },
{"QAM256" , QAM_256 },
{"AUTO" , QAM_AUTO }
};
struct init_item terr_transmission_list[] = {
{"2k" , TRANSMISSION_MODE_2K },
{"8k" , TRANSMISSION_MODE_8K },
{"4k" , TRANSMISSION_MODE_4K },
{"1k" , TRANSMISSION_MODE_1K },
{"16k" , TRANSMISSION_MODE_16K },
{"32k" , TRANSMISSION_MODE_32K },
{"AUTO" , TRANSMISSION_MODE_AUTO }
};
struct init_item terr_guard_list[] = {
{"1/32" , GUARD_INTERVAL_1_32 },
{"1/16" , GUARD_INTERVAL_1_16 },
{"1/8" , GUARD_INTERVAL_1_8 },
{"1/4" , GUARD_INTERVAL_1_4 },
{"1/128" , GUARD_INTERVAL_1_128 },
{"19/128" , GUARD_INTERVAL_19_128 },
{"19/256" , GUARD_INTERVAL_19_256 },
{"AUTO" , GUARD_INTERVAL_AUTO }
};
struct init_item terr_hierarchy_list[] = {
{"NONE", HIERARCHY_NONE},
{"1" , HIERARCHY_1 },
{"2" , HIERARCHY_2 },
{"4" , HIERARCHY_4 },
{"AUTO", HIERARCHY_AUTO}
};
/* convert text to identifiers */
int txt_to_terr_bw ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_bw_list); i++)
if (! strcasecmp(txt, terr_bw_list[i].name))
return terr_bw_list[i].id;
return 8000000; // fallback. should never happen.
}
int txt_to_terr_fec ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_fec_list); i++)
if (! strcasecmp(txt, terr_fec_list[i].name))
return terr_fec_list[i].id;
return FEC_AUTO; // fallback. should never happen.
}
int txt_to_terr_mod ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_mod_list); i++)
if (! strcasecmp(txt, terr_mod_list[i].name))
return terr_mod_list[i].id;
return QAM_AUTO; // fallback. should never happen.
}
int txt_to_terr_transmission ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_transmission_list); i++)
if (! strcasecmp(txt, terr_transmission_list[i].name))
return terr_transmission_list[i].id;
return TRANSMISSION_MODE_AUTO; // fallback. should never happen.
}
int txt_to_terr_guard ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_guard_list); i++)
if (! strcasecmp(txt, terr_guard_list[i].name))
return terr_guard_list[i].id;
return GUARD_INTERVAL_AUTO; // fallback. should never happen.
}
int txt_to_terr_hierarchy ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_hierarchy_list); i++)
if (! strcasecmp(txt, terr_hierarchy_list[i].name))
return terr_hierarchy_list[i].id;
return HIERARCHY_AUTO; // fallback. should never happen.
}
/*convert identifier to text */
const char * terr_bw_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_bw_list); i++)
if (id == terr_bw_list[i].id)
return terr_bw_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * terr_fec_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_fec_list); i++)
if (id == terr_fec_list[i].id)
return terr_fec_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * terr_mod_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_mod_list); i++)
if (id == terr_mod_list[i].id)
return terr_mod_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * terr_transmission_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_transmission_list); i++)
if (id == terr_transmission_list[i].id)
return terr_transmission_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * terr_guard_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_guard_list); i++)
if (id == terr_guard_list[i].id)
return terr_guard_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * terr_hierarchy_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(terr_hierarchy_list); i++)
if (id == terr_hierarchy_list[i].id)
return terr_hierarchy_list[i].name;
return "AUTO"; // fallback. should never happen.
}
/********************************************************************
* DVB-C
********************************************************************/
struct init_item cable_fec_list[] = {
{"NONE" , FEC_NONE},
{"1/2" , FEC_1_2 },
{"2/3" , FEC_2_3 },
{"3/4" , FEC_3_4 },
{"4/5" , FEC_4_5 },
{"5/6" , FEC_5_6 },
{"6/7" , FEC_6_7 },
{"7/8" , FEC_7_8 },
{"8/9" , FEC_8_9 },
{"3/5" , FEC_3_5 },
{"9/10" , FEC_9_10},
{"AUTO" , FEC_AUTO}
};
struct init_item cable_mod_list[] = {
{"QAM16" , QAM_16 },
{"QAM32" , QAM_32 },
{"QAM64" , QAM_64 },
{"QAM128" , QAM_128 },
{"QAM256" , QAM_256 },
#ifdef SYS_DVBC2 //currently not supported by Linux DVB API
{"QAM512" , QAM_512 },
{"QAM1024", QAM_1024},
{"QAM4096", QAM_4096},
#endif
};
/* convert text to identifiers */
int txt_to_cable_fec ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(cable_fec_list); i++)
if (! strcasecmp(txt, cable_fec_list[i].name))
return cable_fec_list[i].id;
return FEC_AUTO; // fallback. should never happen.
}
int txt_to_cable_mod ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(cable_mod_list); i++)
if (! strcasecmp(txt, cable_mod_list[i].name))
return cable_mod_list[i].id;
return QAM_AUTO; // fallback. should never happen.
}
/*convert identifier to text */
const char * cable_fec_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(cable_fec_list); i++)
if (id == cable_fec_list[i].id)
return cable_fec_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * cable_mod_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(cable_mod_list); i++)
if (id == cable_mod_list[i].id)
return cable_mod_list[i].name;
return "AUTO"; // fallback. should never happen.
}
/********************************************************************
* ATSC
********************************************************************/
struct init_item atsc_mod_list[] = {
{"QAM64" , QAM_64 },
{"QAM256", QAM_256},
{"8VSB" , VSB_8 },
{"16VSB" , VSB_16 },
};
/* convert text to identifiers */
int txt_to_atsc_mod ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(atsc_mod_list); i++)
if (! strcasecmp(txt, atsc_mod_list[i].name))
return atsc_mod_list[i].id;
return QAM_AUTO; // fallback. should never happen.
}
/*convert identifier to text */
const char * atsc_mod_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(atsc_mod_list); i++)
if (id == atsc_mod_list[i].id)
return atsc_mod_list[i].name;
return "AUTO"; // fallback. should never happen.
}
/********************************************************************
* DVB-S
********************************************************************/
struct init_item sat_delivery_system_list[] = {
{"S" , SYS_DVBS },
{"S1", SYS_DVBS },
{"S2", SYS_DVBS2 },
};
struct init_item sat_pol_list[] = {
{"H", POLARIZATION_HORIZONTAL },
{"V", POLARIZATION_VERTICAL },
{"R", POLARIZATION_CIRCULAR_RIGHT},
{"L", POLARIZATION_CIRCULAR_LEFT },
}; // NOTE: no AUTO used here.
struct init_item sat_fec_list[] = {
{"NONE" , FEC_NONE},
{"1/2" , FEC_1_2 },
{"2/3" , FEC_2_3 },
{"3/4" , FEC_3_4 },
{"4/5" , FEC_4_5 },
{"5/6" , FEC_5_6 },
{"6/7" , FEC_6_7 },
{"7/8" , FEC_7_8 },
{"8/9" , FEC_8_9 },
{"3/5" , FEC_3_5 }, //S2
{"9/10" , FEC_9_10}, //S2
{"AUTO" , FEC_AUTO}
};
struct init_item sat_rolloff_list[] = {
{"35" , ROLLOFF_35},
{"25" , ROLLOFF_25},
{"20" , ROLLOFF_20},
{"AUTO", ROLLOFF_AUTO},
};
struct init_item sat_mod_list[] = {
{"QPSK" , QPSK },
{"8PSK" , PSK_8 },
{"16APSK", APSK_16},
{"32APSK", APSK_32},
{"AUTO" , QPSK },
};
/* convert text to identifiers */
int txt_to_sat_delivery_system ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_delivery_system_list); i++)
if (! strcasecmp(txt, sat_delivery_system_list[i].name))
return sat_delivery_system_list[i].id;
return SYS_DVBS; // fallback. should never happen.
}
int txt_to_sat_pol ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_pol_list); i++)
if (! strcasecmp(txt, sat_pol_list[i].name))
return sat_pol_list[i].id;
return POLARIZATION_HORIZONTAL; // fallback. should never happen.
}
int txt_to_sat_fec ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_fec_list); i++)
if (! strcasecmp(txt, sat_fec_list[i].name))
return sat_fec_list[i].id;
return FEC_AUTO; // fallback. should never happen.
}
int txt_to_sat_rolloff ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_rolloff_list); i++)
if (! strcasecmp(txt, sat_rolloff_list[i].name))
return sat_rolloff_list[i].id;
return ROLLOFF_35; // fallback. should never happen.
}
int txt_to_sat_mod ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_mod_list); i++)
if (! strcasecmp(txt, sat_mod_list[i].name))
return sat_mod_list[i].id;
return QPSK; // fallback. should never happen.
}
/*convert identifier to text */
const char * sat_delivery_system_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_delivery_system_list); i++)
if (id == sat_delivery_system_list[i].id)
return sat_delivery_system_list[i].name;
return "S"; // fallback. should never happen.
}
const char * sat_pol_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_pol_list); i++)
if (id == sat_pol_list[i].id)
return sat_pol_list[i].name;
return "H"; // fallback. should never happen.
}
const char * sat_fec_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_fec_list); i++)
if (id == sat_fec_list[i].id)
return sat_fec_list[i].name;
return "AUTO"; // fallback. should never happen.
}
const char * sat_rolloff_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_rolloff_list); i++)
if (id == sat_rolloff_list[i].id)
return sat_rolloff_list[i].name;
return "35"; // fallback. should never happen.
}
const char * sat_mod_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(sat_mod_list); i++)
if (id == sat_mod_list[i].id)
return sat_mod_list[i].name;
return "QPSK"; // fallback. should never happen.
}
/********************************************************************
* non-frontend specific part
*
********************************************************************/
struct init_item scantype_list[] = {
{"TERRCABLE_ATSC", SCAN_TERRCABLE_ATSC},
{"CABLE", SCAN_CABLE },
{"TERRESTRIAL", SCAN_TERRESTRIAL},
{"SATELLITE", SCAN_SATELLITE},
}; // NOTE: "AUTO" == SCAN_TERRESTRIAL in t2scan !
/* convert text to identifiers */
int txt_to_scantype ( const char * txt ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(scantype_list); i++)
if (! strcasecmp(txt, scantype_list[i].name))
return scantype_list[i].id;
return SCAN_TERRESTRIAL; // fallback. should never happen.
}
/*convert identifier to text */
const char * scantype_to_txt ( int id ) {
unsigned int i;
for (i = 0; i < STRUCT_COUNT(scantype_list); i++)
if (id == scantype_list[i].id)
return scantype_list[i].name;
return "TERRESTRIAL"; // fallback. should never happen.
}