mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
dvb/parsechannels: parse guard interval as a fraction
Fixes wrong default failover when parsing libdvbv5 formatted channel configuration files.
This commit is contained in:
parent
5d1b62ccda
commit
7dd42aee5b
1 changed files with 2 additions and 2 deletions
|
@ -274,8 +274,8 @@ gst_dvb_base_bin_conf_set_guard (GstElement * dvbbasebin,
|
||||||
const gchar * key)
|
const gchar * key)
|
||||||
{
|
{
|
||||||
const gchar *guards[] = {
|
const gchar *guards[] = {
|
||||||
"32", "16", "8", "4", "auto",
|
"1/32", "1/16", "1/8", "1/4", "auto",
|
||||||
"128", "19/128", "19/256",
|
"1/128", "19/128", "19/256",
|
||||||
"PN420", "PN595", "PN945", NULL
|
"PN420", "PN595", "PN945", NULL
|
||||||
};
|
};
|
||||||
return gst_dvb_base_bin_conf_set_property_from_string_array (dvbbasebin,
|
return gst_dvb_base_bin_conf_set_property_from_string_array (dvbbasebin,
|
||||||
|
|
Loading…
Reference in a new issue