From: Mark Clarkstone Date: Thu, 17 Dec 2015 04:03:00 +0000 (+0000) Subject: Even more.. X-Git-Tag: v4.2.1~1280 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76dd978d6df9d9f51c2433e24c244383249f5659;p=thirdparty%2Ftvheadend.git Even more.. --- diff --git a/src/input/mpegts/mpegts_mux_dvb.c b/src/input/mpegts/mpegts_mux_dvb.c index da4af629a..e31367fde 100644 --- a/src/input/mpegts/mpegts_mux_dvb.c +++ b/src/input/mpegts/mpegts_mux_dvb.c @@ -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, @@ -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."), }, {} } diff --git a/src/input/mpegts/satip/satip.c b/src/input/mpegts/satip/satip.c index e45392bb2..7f1e3addd 100644 --- a/src/input/mpegts/satip/satip.c +++ b/src/input/mpegts/satip/satip.c @@ -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, diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index a9b6ba29c..7b3d7e487 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -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),