SAT>IP: Remove the full mux option like in linuxdvb
This commit is contained in:
parent
78fcbf5233
commit
25adfaa1fa
3 changed files with 0 additions and 15 deletions
|
@ -18,12 +18,6 @@
|
|||
|
||||
<dt>Name</dt>
|
||||
<dd>The name of this tuner.</dd>
|
||||
|
||||
<dt>Full Mux Rx mode</dt>
|
||||
<dd>If selected, the whole mux (transponder) will be received without any
|
||||
filtering. It is not usually required to enable this option. It does
|
||||
not have usually any benefit, because tvheadend will filter the
|
||||
unwanted PIDs from the TS stream, except for the malfunctioning drivers.</dd>
|
||||
</dl>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -100,12 +100,6 @@ const idclass_t satip_frontend_class =
|
|||
.opts = PO_RDONLY | PO_NOSAVE,
|
||||
.off = offsetof(satip_frontend_t, sf_number),
|
||||
},
|
||||
{
|
||||
.type = PT_BOOL,
|
||||
.id = "fullmux",
|
||||
.name = "Full Mux Rx mode",
|
||||
.off = offsetof(satip_frontend_t, sf_fullmux),
|
||||
},
|
||||
{
|
||||
.type = PT_INT,
|
||||
.id = "udp_rtp_port",
|
||||
|
@ -750,8 +744,6 @@ satip_frontend_pid_changed( http_client_t *rtsp,
|
|||
|
||||
if (lfe->sf_pids_count > lfe->sf_device->sd_pids_max)
|
||||
any = lfe->sf_device->sd_fullmux_ok ? 1 : 0;
|
||||
if (lfe->sf_fullmux && lfe->sf_device->sd_fullmux_ok)
|
||||
any = 1;
|
||||
|
||||
if (any) {
|
||||
|
||||
|
|
|
@ -100,7 +100,6 @@ struct satip_frontend
|
|||
char *sf_type_override;
|
||||
int sf_master;
|
||||
int sf_udp_rtp_port;
|
||||
int sf_fullmux;
|
||||
int sf_play2;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue