summaryrefslogtreecommitdiffstats
path: root/gst/videobox
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
commit842a43f80230c65d024a5859c6b67dc601e7de64 (patch)
treea012246390f7c9192d05f2d1c4889e6e604a4bc3 /gst/videobox
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'gst/videobox')
-rw-r--r--gst/videobox/gstvideobox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/videobox/gstvideobox.c b/gst/videobox/gstvideobox.c
index 315b3e2b..87a72e8a 100644
--- a/gst/videobox/gstvideobox.c
+++ b/gst/videobox/gstvideobox.c
@@ -145,9 +145,9 @@ gst_video_box_fill_get_type (void)
{
static GType video_box_fill_type = 0;
static GEnumValue video_box_fill[] = {
- {VIDEO_BOX_FILL_BLACK, "0", "Black"},
- {VIDEO_BOX_FILL_GREEN, "1", "Colorkey green"},
- {VIDEO_BOX_FILL_BLUE, "2", "Colorkey blue"},
+ {VIDEO_BOX_FILL_BLACK, "Black", "black"},
+ {VIDEO_BOX_FILL_GREEN, "Colorkey green", "green"},
+ {VIDEO_BOX_FILL_BLUE, "Colorkey blue", "blue"},
{0, NULL, NULL},
};