dvbsrc: fix unconditional use of FEC 2/5
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 8 Dec 2016 20:07:31 +0000 (12:07 -0800)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 8 Dec 2016 20:16:28 +0000 (12:16 -0800)
It is not defined for < v5 minor 7

sys/dvb/gstdvbsrc.c

index d609d78..565328f 100644 (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},
   };