mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
pwg: make the enum example (based on videotestsrc) actually match videotestsrc
This commit is contained in:
parent
df741e7e2f
commit
bfef4a70bf
1 changed files with 3 additions and 3 deletions
|
@ -130,9 +130,9 @@ gst_videotestsrc_pattern_get_type (void)
|
|||
|
||||
if (!videotestsrc_pattern_type) {
|
||||
static GEnumValue pattern_types[] = {
|
||||
{ GST_VIDEOTESTSRC_SMPTE, "smpte", "SMPTE 100% color bars" },
|
||||
{ GST_VIDEOTESTSRC_SNOW, "snow", "Random (television snow)" },
|
||||
{ GST_VIDEOTESTSRC_BLACK, "black", "0% Black" },
|
||||
{ GST_VIDEOTESTSRC_SMPTE, "SMPTE 100% color bars", "smpte" },
|
||||
{ GST_VIDEOTESTSRC_SNOW, "Random (television snow)", "snow" },
|
||||
{ GST_VIDEOTESTSRC_BLACK, "0% Black", "black" },
|
||||
{ 0, NULL, NULL },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue