summaryrefslogtreecommitdiffstats
path: root/gst/videomixer
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/videomixer
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'gst/videomixer')
-rw-r--r--gst/videomixer/videomixer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/videomixer/videomixer.c b/gst/videomixer/videomixer.c
index cf78f9f7..a71ddcde 100644
--- a/gst/videomixer/videomixer.c
+++ b/gst/videomixer/videomixer.c
@@ -375,9 +375,9 @@ gst_video_mixer_background_get_type (void)
{
static GType video_mixer_background_type = 0;
static GEnumValue video_mixer_background[] = {
- {VIDEO_MIXER_BACKGROUND_CHECKER, "0", "Checker pattern"},
- {VIDEO_MIXER_BACKGROUND_BLACK, "1", "Black"},
- {VIDEO_MIXER_BACKGROUND_WHITE, "2", "White"},
+ {VIDEO_MIXER_BACKGROUND_CHECKER, "Checker pattern", "checker"},
+ {VIDEO_MIXER_BACKGROUND_BLACK, "Black", "black"},
+ {VIDEO_MIXER_BACKGROUND_WHITE, "White", "white"},
{0, NULL, NULL},
};