dvbsrc: fix unconditional use of FEC 2/5

It is not defined for < v5 minor 7
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2016-12-08 12:07:31 -08:00
parent 9d94b15310
commit 1172b4df5a

View file

@ -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},
};