From 842a43f80230c65d024a5859c6b67dc601e7de64 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 22 Nov 2005 18:11:58 +0000 Subject: fix up more enums Original commit message from CVS: fix up more enums --- ext/esd/esdmon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/esd') diff --git a/ext/esd/esdmon.c b/ext/esd/esdmon.c index 5b0f714a..eaa8b097 100644 --- a/ext/esd/esdmon.c +++ b/ext/esd/esdmon.c @@ -93,8 +93,8 @@ gst_esdmon_depths_get_type (void) { static GType esdmon_depths_type = 0; static GEnumValue esdmon_depths[] = { - {8, "8", "8 Bits"}, - {16, "16", "16 Bits"}, + {8, "8 Bits", "8"}, + {16, "16 Bits", "16"}, {0, NULL, NULL}, }; @@ -111,8 +111,8 @@ gst_esdmon_channels_get_type (void) { static GType esdmon_channels_type = 0; static GEnumValue esdmon_channels[] = { - {1, "1", "Mono"}, - {2, "2", "Stereo"}, + {1, "Mono", "mono"}, + {2, "Stereo", "stereo"}, {0, NULL, NULL}, }; -- cgit