mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
dvbsrc: fix unconditional use of FEC 2/5
It is not defined for < v5 minor 7
This commit is contained in:
parent
9d94b15310
commit
1172b4df5a
1 changed files with 2 additions and 0 deletions
|
@ -274,7 +274,9 @@ gst_dvbsrc_code_rate_get_type (void)
|
|||
{FEC_AUTO, "AUTO", "auto"},
|
||||
{FEC_3_5, "3/5", "3/5"},
|
||||
{FEC_9_10, "9/10", "9/10"},
|
||||
#if HAVE_V5_MINOR(7)
|
||||
{FEC_2_5, "2/5", "2/5"},
|
||||
#endif
|
||||
{0, NULL, NULL},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue