From: Thomas Göttgens Date: Fri, 30 Dec 2016 23:11:33 +0000 (+0100) Subject: Make SAT>IP requests for pids=all work X-Git-Tag: v4.2.1~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35d0236fa014c875d127daa07fc1912c60001e9a;p=thirdparty%2Ftvheadend.git Make SAT>IP requests for pids=all work pids=all would result in only pid 0 being sent. transedit uses this to analyze ts content which is again possible with this patch. --- diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c index d3dabc77b..39a5fde51 100644 --- a/src/satip/rtsp.c +++ b/src/satip/rtsp.c @@ -1116,7 +1116,7 @@ rtsp_parse_cmd rs->shutdown_on_close = hc; play: - if (pids.count > 0) + if (pids.count > 0 || pids.all) mpegts_pid_copy(&rs->pids, &pids); if (delpids.count > 0) mpegts_pid_del_group(&rs->pids, &delpids);