dvbsrc: add missing DVB-T2 bandwidth types

DVB-T2 supports 5, 10 and 1.712 MHz

Order of the enum values (new values 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-10-12 13:08:13 -03:00
parent 23bb5f5319
commit e26eecd182

View file

@ -363,6 +363,9 @@ gst_dvbsrc_bandwidth_get_type (void)
{BANDWIDTH_7_MHZ, "7", "7"},
{BANDWIDTH_6_MHZ, "6", "6"},
{BANDWIDTH_AUTO, "AUTO", "AUTO"},
{BANDWIDTH_5_MHZ, "5", "5"},
{BANDWIDTH_10_MHZ, "10", "10"},
{BANDWIDTH_1_712_MHZ, "1.712", "1.712"},
{0, NULL, NULL},
};