dvbsrc: add missing FEC rates

Order of the enum values (new rates after _AUTO)
has been kept congruent with the one in the v4l
API for consistency.
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2014-09-19 18:59:01 -03:00
parent 10997063a1
commit 784d2403dc

View file

@ -282,6 +282,9 @@ gst_dvbsrc_code_rate_get_type (void)
{FEC_7_8, "7/8", "7/8"},
{FEC_8_9, "8/9", "8/9"},
{FEC_AUTO, "AUTO", "auto"},
{FEC_3_5, "3/5", "3/5"},
{FEC_9_10, "9/10", "9/10"},
{FEC_2_5, "2/5", "2/5"},
{0, NULL, NULL},
};