mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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.
This commit is contained in:
parent
8059cf6567
commit
7724d406ea
1 changed files with 3 additions and 0 deletions
|
@ -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},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue