summaryrefslogtreecommitdiffstats
path: root/ext/esd
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 /ext/esd
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'ext/esd')
-rw-r--r--ext/esd/esdmon.c8
1 files changed, 4 insertions, 4 deletions
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},
};