]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
satip client: add ATSC- string parsing, issue #5728
authorJaroslav Kysela <perex@perex.cz>
Sun, 6 Oct 2019 14:52:52 +0000 (16:52 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sun, 6 Oct 2019 14:52:52 +0000 (16:52 +0200)
src/input/mpegts/satip/satip.c

index ebce12d63195327c15f46f8f6c6aad458bc552d5..0694df588a634475e4403fbdb355278881c2fc3e 100644 (file)
@@ -716,6 +716,9 @@ satip_device_create( satip_device_info_t *info )
     } else if (strncmp(argv[i], "DVBC-", 5) == 0) {
       type = DVB_TYPE_C;
       m = atoi(argv[i] + 5);
+    } else if (strncmp(argv[i], "ATSC-", 5) == 0) {
+      type = DVB_TYPE_ATSC_T;
+      m = atoi(argv[i] + 5);
     } else if (strncmp(argv[i], "ATSCT-", 6) == 0) {
       type = DVB_TYPE_ATSC_T;
       m = atoi(argv[i] + 6);