1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

add DVB-C2

This commit is contained in:
internal 2023-05-05 12:39:16 +02:00
parent 6e4f8dc86b
commit 37e423d19b

View File

@ -391,6 +391,10 @@ int main(int argc, char **argv)
printf("unknown mtype %s\n", optarg); printf("unknown mtype %s\n", optarg);
break; break;
case 'd': case 'd':
if (!strcmp(optarg, "C2"))
delsys = SYS_DVBC2;
if (!strcmp(optarg, "DVBC2"))
delsys = SYS_DVBC2;
if (!strcmp(optarg, "C")) if (!strcmp(optarg, "C"))
delsys = SYS_DVBC_ANNEX_A; delsys = SYS_DVBC_ANNEX_A;
if (!strcmp(optarg, "DVBC")) if (!strcmp(optarg, "DVBC"))