summaryrefslogtreecommitdiffstats
path: root/ext/flac/gstflacenc.c
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/flac/gstflacenc.c
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'ext/flac/gstflacenc.c')
-rw-r--r--ext/flac/gstflacenc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index f7edaabb..c90e1192 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -159,16 +159,16 @@ gst_flacenc_quality_get_type (void)
if (qtype == 0) {
static const GEnumValue values[] = {
- {0, "0", "0 - Fastest compression"},
+ {0, "0 - Fastest compression", "0"},
{1, "1", "1"},
{2, "2", "2"},
{3, "3", "3"},
{4, "4", "4"},
- {5, "5", "5 - Default"},
+ {5, "5 - Default", "5"},
{6, "6", "6"},
{7, "7", "7"},
- {8, "8", "8 - Highest compression "},
- {9, "9", "9 - Insane"},
+ {8, "8 - Highest compression", "8"},
+ {9, "9 - Insane", "9"},
{0, NULL, NULL}
};