From: Pablo Date: Tue, 2 Oct 2018 18:41:36 +0000 (+0200) Subject: Optimize default configuration of SAT>IP Triax TSS 400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dfe2fe989dd0589ea62f45fbbeb14f66b2f66d6;p=thirdparty%2Ftvheadend.git Optimize default configuration of SAT>IP Triax TSS 400 https://tvheadend.org/issues/4244 As we discussed a while ago, the configuration should be different. * The complete mux should not be supported * Along with it an increase of maximum pids is useful to open more channels. --- diff --git a/src/input/mpegts/satip/satip.c b/src/input/mpegts/satip/satip.c index 6225fd5cd..000bec9d4 100644 --- a/src/input/mpegts/satip/satip.c +++ b/src/input/mpegts/satip/satip.c @@ -569,6 +569,8 @@ 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")) { + sd->sd_fullmux_ok = 0; + sd->sd_pids_max = 64; sd->sd_pilot_on = 1; } else if (strcmp(sd->sd_info.modelname, "TVHeadend SAT>IP") == 0) { sd->sd_pids_max = 128;