Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Even more..
  • Loading branch information
Mark Clarkstone authored and perexg committed Dec 26, 2015
1 parent d9fb6bf commit 76dd978
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/input/mpegts/mpegts_mux_dvb.c
Expand Up @@ -308,6 +308,7 @@ const idclass_t dvb_mux_dvbc_class =
.ic_properties = (const property_t[]){
{
MUX_PROP_STR("delsys", N_("Delivery system"), dvbc, delsys, "DVB-C"),
.desc = N_("Select the delivery system used by your cable provider."),
},
{
.type = PT_U32,
Expand All @@ -325,10 +326,13 @@ const idclass_t dvb_mux_dvbc_class =
.off = offsetof(dvb_mux_t, lm_tuning.u.dmc_fe_qam.symbol_rate),
},
{
MUX_PROP_STR("constellation", N_("Constellation"), dvbc, qam, N_("AUTO"))
MUX_PROP_STR("constellation", N_("Constellation"), dvbc, qam, N_("AUTO")),
.desc = N_("Select the quadrature amplitude modulation (QAM) used by the mux. "
"If you're not sure of the value leave as AUTO."),
},
{
MUX_PROP_STR("fec", N_("FEC"), dvbc, fec, N_("AUTO"))
MUX_PROP_STR("fec", N_("FEC"), dvbc, fec, N_("AUTO")),
.desc = N_("Select the forward error correction used on the mux."),
},
{}
}
Expand Down
1 change: 1 addition & 0 deletions src/input/mpegts/satip/satip.c
Expand Up @@ -201,6 +201,7 @@ const idclass_t satip_device_class =
.type = PT_STR,
.id = "tunercfgu",
.name = N_("Tuner configuration"),
.desc = N_("Tuner configuration."),
.opts = PO_SORTKEY,
.off = offsetof(satip_device_t, sd_tunercfg),
.list = satip_device_class_tunercfg_list,
Expand Down
1 change: 1 addition & 0 deletions src/input/mpegts/satip/satip_frontend.c
Expand Up @@ -225,6 +225,7 @@ const idclass_t satip_frontend_dvbt_class =
.type = PT_STR,
.id = "fe_override",
.name = N_("Network type"),
.desc = N_("Override the frontend type."),
.set = satip_frontend_class_override_set,
.list = satip_frontend_class_override_enum,
.off = offsetof(satip_frontend_t, sf_type_override),
Expand Down

0 comments on commit 76dd978

Please sign in to comment.