From: Pablo Date: Fri, 15 Feb 2019 22:08:07 +0000 (+0100) Subject: Triax & Kathrein: Increase pid length, issue #5544 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ff49818e6ac5d0c46995f60f33248e1b2e172b0;p=thirdparty%2Ftvheadend.git Triax & Kathrein: Increase pid length, issue #5544 --- diff --git a/src/input/mpegts/satip/satip.c b/src/input/mpegts/satip/satip.c index f4170a71a..ebce12d63 100644 --- a/src/input/mpegts/satip/satip.c +++ b/src/input/mpegts/satip/satip.c @@ -579,15 +579,19 @@ satip_device_hack( satip_device_t *sd ) /* OctopusNet requires pids in the SETUP RTSP command */ } else if (strstr(sd->sd_info.manufacturer, "Triax") && strstr(sd->sd_info.modelname, "TSS400")) { + /* Rolloff is required to tune into DVB-S2 muxes */ sd->sd_fullmux_ok = 0; sd->sd_pids_max = 64; + sd->sd_pids_len = 255; sd->sd_pilot_on = 1; } else if (strstr(sd->sd_info.manufacturer, "KATHREIN") && - (strstr(sd->sd_info.modelname, "EXIP-4124") || - strstr(sd->sd_info.modelname, "EXIP-418") || - strstr(sd->sd_info.modelname, "EXIP-414"))) { + (strstr(sd->sd_info.modelname, "EXIP-4124") || + strstr(sd->sd_info.modelname, "EXIP-418") || + strstr(sd->sd_info.modelname, "EXIP-414"))) { + /* Rolloff is required to tune into DVB-S2 muxes */ sd->sd_fullmux_ok = 0; sd->sd_pids_max = 64; + sd->sd_pids_len = 255; sd->sd_pilot_on = 1; } else if (strcmp(sd->sd_info.modelname, "TVHeadend SAT>IP") == 0) { sd->sd_pids_max = 128;