X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fbda%2Fbda.c;h=f3da942d3a0cbd215ac987b955284474b5078a08;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=068053d63c9dd2223d377229c962d72d1103d3a7;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/access/bda/bda.c b/modules/access/bda/bda.c index 068053d63c..f3da942d3a 100644 --- a/modules/access/bda/bda.c +++ b/modules/access/bda/bda.c @@ -119,14 +119,14 @@ static const char *ppsz_qam_text[] = { N_("Undefined"), N_("16"), N_("32"), "[Undefined,1/2,2/3,3/4,5/6,7/8]") static const int i_hp_fec_list[] = { -1, 1, 2, 3, 4, 5 }; static const char *ppsz_hp_fec_text[] = { N_("Undefined"), N_("1/2"), N_("2/3"), - N_("3/4"), N_("5/6"), N_("7/8") }; + N_("3/4"), N_("5/6"), N_("7/8") }; #define CODE_RATE_LP_TEXT N_("Terrestrial low priority stream code rate (FEC)") #define CODE_RATE_LP_LONGTEXT N_("Low Priority FEC Rate " \ "[Undefined,1/2,2/3,3/4,5/6,7/8]") static const int i_lp_fec_list[] = { -1, 1, 2, 3, 4, 5 }; static const char *ppsz_lp_fec_text[] = { N_("Undefined"), N_("1/2"), N_("2/3"), - N_("3/4"), N_("5/6"), N_("7/8") }; + N_("3/4"), N_("5/6"), N_("7/8") }; #define BANDWIDTH_TEXT N_("Terrestrial bandwidth") #define BANDWIDTH_LONGTEXT N_("Terrestrial bandwidth [0=auto,6,7,8 in MHz]") @@ -446,7 +446,7 @@ static int ParsePath( access_t *p_access, const char* psz_module, } b_used[i_this_param] = TRUE; - /* if "=" was found in token then value starts at + /* if "=" was found in token then value starts at * psz_token + i_paramlen + 1 * else there is no value specified so we use an empty string */ psz_value = psz_token + i_param_len + 1;