Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mux user level adjustments
  • Loading branch information
Glenn-1990 authored and perexg committed Oct 20, 2016
1 parent 1c5f8f6 commit 6f5a34e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/input/mpegts/mpegts_mux_dvb.c
Expand Up @@ -473,10 +473,12 @@ const idclass_t dvb_mux_dvbs_class =
{
MUX_PROP_STR("rolloff", N_("Rolloff"), dvbs, rolloff, "AUTO"),
.desc = N_("The rolloff used on the mux."),
.opts = PO_ADVANCED,
},
{
MUX_PROP_STR("pilot", N_("Pilot"), dvbs, pilot, "AUTO"),
.desc = N_("Enable/disable pilot tone."),
.opts = PO_ADVANCED,
},
{
.type = PT_INT,
Expand All @@ -485,12 +487,13 @@ const idclass_t dvb_mux_dvbs_class =
.desc = N_("The stream ID used for the mux."),
.off = offsetof(dvb_mux_t, lm_tuning.dmc_fe_stream_id),
.def.i = DVB_NO_STREAM_ID_FILTER,
.opts = PO_ADVANCED
.opts = PO_EXPERT
},
{
MUX_PROP_STR("pls_mode", N_("PLS mode"), dvbs, pls_mode, "ROOT"),
.desc = N_("The Physical Layer Scrambling (PLS) mode "
"used on the mux."),
.opts = PO_ADVANCED,
},
{
.type = PT_U32,
Expand All @@ -500,7 +503,7 @@ const idclass_t dvb_mux_dvbs_class =
"used on the mux."),
.off = offsetof(dvb_mux_t, lm_tuning.dmc_fe_pls_code),
.def.u32 = 1,
.opts = PO_ADVANCED
.opts = PO_EXPERT
},
{
.type = PT_STR,
Expand Down
1 change: 1 addition & 0 deletions src/webui/static/app/mpegts.js
Expand Up @@ -349,6 +349,7 @@ tvheadend.mux_sched = function(panel, index)
titleP: _('Mux Schedulers'),
iconCls: 'muxSchedulers',
tabIndex: index,
uilevel: 'expert',
hidemode: true,
add: {
url: 'api/mpegts/mux_sched',
Expand Down

0 comments on commit 6f5a34e

Please sign in to comment.