[gst-cvs] gstreamer: pwg: make the enum example (based on videotestsrc) actually match videotestsrc
Michael Smith
msmith at kemper.freedesktop.org
Fri Dec 4 12:20:10 PST 2009
Module: gstreamer
Branch: master
Commit: bfef4a70bf68d052b3430277ec62af21adf1816b
URL: http://cgit.freedesktop.org/gstreamer/gstreamer/commit/?id=bfef4a70bf68d052b3430277ec62af21adf1816b
Author: Peter van Hardenberg <pvh at songbirdnest.com>
Date: Fri Dec 4 12:16:32 2009 -0800
pwg: make the enum example (based on videotestsrc) actually match videotestsrc
---
docs/pwg/building-props.xml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/pwg/building-props.xml b/docs/pwg/building-props.xml
index 1cbe88b..ae6b7d8 100644
--- a/docs/pwg/building-props.xml
+++ b/docs/pwg/building-props.xml
@@ -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 },
};
More information about the Gstreamer-commits
mailing list