summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter van Hardenberg <pvh@songbirdnest.com>2009-12-04 12:16:32 -0800
committerMichael Smith <msmith@songbirdnest.com>2009-12-04 12:17:07 -0800
commitbfef4a70bf68d052b3430277ec62af21adf1816b (patch)
tree8011ae1ffc01db9bfce8b0403a5d2c0b4c844aac
parentdf741e7e2f19aa45b58c0a8ea3520a7eeb3fa156 (diff)
pwg: make the enum example (based on videotestsrc) actually match videotestsrc
-rw-r--r--docs/pwg/building-props.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/pwg/building-props.xml b/docs/pwg/building-props.xml
index 1cbe88b050..ae6b7d855e 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 },
};