]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
rtsp: parse 8192 pid value as all
authorJaroslav Kysela <perex@perex.cz>
Fri, 9 Feb 2018 16:01:46 +0000 (17:01 +0100)
committerJaroslav Kysela <perex@perex.cz>
Fri, 9 Feb 2018 16:01:46 +0000 (17:01 +0100)
src/satip/rtsp.c

index 7641b85ce49f27ffbf2307ab83871bfcb7a5123d..1ed0191303db54763e31f47e62567ddb7bddd7bf 100644 (file)
@@ -921,7 +921,7 @@ parse_pids(char *p, mpegts_apids_t *pids)
   while (1) {
     if (x == NULL)
       break;
-    if (strcmp(x, "all") == 0) {
+    if (strcmp(x, "all") == 0 || strcmp(x, "8192") == 0) {
       if (satip_server_conf.satip_restrict_pids_all) {
         pids->all = 0;
         for (pid = 1; pid <= 2; pid++) /* CAT, TSDT */