<p>
<dt><b>Send full PLAY cmd</b></dt>
<dd>Send the full RTSP PLAY command after full RTSP SETUP command. Some
- device firmwares requires this to get MPEG-TS stream.</dd>
+ device firmwares require this to get MPEG-TS stream.</dd>
+<p>
+ <dt><b>Override tuner count</b></dt>
+ <dd>Force tvheadend to see a specific number of tuners. Some devices, notably
+ AVM's FRITZ!Box Cable 6490, report wrong number of tuners and this setting
+ allows you to override that. Any value below 1 or above 32 is ignored.</dd>
<p>
<dt><b>Force teardown delay</b><dt>
<dd>Force the delay between RTSP TEARDOWN and RTSP SETUP command (value
.opts = PO_ADVANCED,
.off = offsetof(satip_device_t, sd_pilot_on),
},
+ {
+ .type = PT_INT,
+ .id = "tunercfgoverride",
+ .name = "Override tuner count",
+ .opts = PO_ADVANCED,
+ .off = offsetof(satip_device_t, sd_tunercfg_override),
+ },
{
.type = PT_STR,
.id = "bindaddr",
m = atoi(argv[i] + 6);
v2 = 2;
}
+ if (sd->sd_tunercfg_override > 0 && sd->sd_tunercfg_override < 33) m = sd->sd_tunercfg_override;
if (type == DVB_TYPE_NONE) {
tvhlog(LOG_ERR, "satip", "%s: bad tuner type [%s]",
satip_device_nicename(sd, buf2, sizeof(buf2)), argv[i]);