From 7724d406ea1277cb8ac7279823bab7ea5f2a10b1 Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Fri, 3 Oct 2014 19:55:02 -0300 Subject: [PATCH] dvbsrc: add missing DVB-T2 guard intervals According to the v4l-dvb API docs, these are only used for DVB-T2 at the moment. Order of the enum values (new rates after _AUTO) has been kept congruent with the one in the v4l API for consistency. --- sys/dvb/gstdvbsrc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c index 17933ff475..2ceaf6957b 100644 --- a/sys/dvb/gstdvbsrc.c +++ b/sys/dvb/gstdvbsrc.c @@ -376,6 +376,9 @@ gst_dvbsrc_guard_get_type (void) {GUARD_INTERVAL_1_8, "8", "8"}, {GUARD_INTERVAL_1_4, "4", "4"}, {GUARD_INTERVAL_AUTO, "AUTO", "auto"}, + {GUARD_INTERVAL_1_128, "128", "128"}, + {GUARD_INTERVAL_19_128, "19/128", "19/128"}, + {GUARD_INTERVAL_19_256, "19/256", "19/256"}, {0, NULL, NULL}, };