From: Jaroslav Kysela Date: Fri, 9 Feb 2018 16:01:46 +0000 (+0100) Subject: rtsp: parse 8192 pid value as all X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06d3fdf5a496dfd847c4bf5fb8066bab41ee490f;p=thirdparty%2Ftvheadend.git rtsp: parse 8192 pid value as all --- diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c index 7641b85ce..1ed019130 100644 --- a/src/satip/rtsp.c +++ b/src/satip/rtsp.c @@ -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 */