summaryrefslogtreecommitdiffstats
path: root/ext/wavpack
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-01-11 19:51:04 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-01-11 19:51:04 +0000
commit65f0ce927deb93ad6c582a7e7897d45f74e4663a (patch)
tree7d1ba92945653c6934201505d2cce27924aebaa4 /ext/wavpack
parent1e364d04f5b9d1085ae469a7308ce95d157cf878 (diff)
ext/wavpack/gstwavpackenc.c: Minor clean-up: use enum values instead of hardcoded constants (#395536).
Original commit message from CVS: Patch by: Sebastian Dröge <slomo@circular-chaos.org> * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type), (gst_wavpack_enc_correction_mode_get_type), (gst_wavpack_enc_joint_stereo_mode_get_type): Minor clean-up: use enum values instead of hardcoded constants (#395536).
Diffstat (limited to 'ext/wavpack')
-rw-r--r--ext/wavpack/gstwavpackenc.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/ext/wavpack/gstwavpackenc.c b/ext/wavpack/gstwavpackenc.c
index 336580c4..1661d089 100644
--- a/ext/wavpack/gstwavpackenc.c
+++ b/ext/wavpack/gstwavpackenc.c
@@ -168,13 +168,13 @@ gst_wavpack_enc_mode_get_type (void)
#if 0
/* Very Fast Compression is not supported yet, but will be supported
* in future wavpack versions */
- {0, "Very Fast Compression", "veryfast"},
+ {GST_WAVPACK_ENC_MODE_VERY_FAST, "Very Fast Compression", "veryfast"},
#endif
- {1, "Fast Compression", "fast"},
- {2, "Normal Compression", "normal"},
- {3, "High Compression", "high"},
+ {GST_WAVPACK_ENC_MODE_FAST, "Fast Compression", "fast"},
+ {GST_WAVPACK_ENC_MODE_DEFAULT, "Normal Compression", "normal"},
+ {GST_WAVPACK_ENC_MODE_HIGH, "High Compression", "high"},
#ifndef WAVPACK_OLD_API
- {4, "Very High Compression", "veryhigh"},
+ {GST_WAVPACK_ENC_MODE_VERY_HIGH, "Very High Compression", "veryhigh"},
#endif
{0, NULL, NULL}
};
@@ -199,9 +199,10 @@ gst_wavpack_enc_correction_mode_get_type (void)
if (qtype == 0) {
static const GEnumValue values[] = {
- {0, "Create no correction file", "off"},
- {1, "Create correction file", "on"},
- {2, "Create optimized correction file", "optimized"},
+ {GST_WAVPACK_CORRECTION_MODE_OFF, "Create no correction file", "off"},
+ {GST_WAVPACK_CORRECTION_MODE_ON, "Create correction file", "on"},
+ {GST_WAVPACK_CORRECTION_MODE_OPTIMIZED,
+ "Create optimized correction file", "optimized"},
{0, NULL, NULL}
};
@@ -225,9 +226,9 @@ gst_wavpack_enc_joint_stereo_mode_get_type (void)
if (qtype == 0) {
static const GEnumValue values[] = {
- {0, "auto", "auto"},
- {1, "left/right", "leftright"},
- {2, "mid/side", "midside"},
+ {GST_WAVPACK_JS_MODE_AUTO, "auto", "auto"},
+ {GST_WAVPACK_JS_MODE_LEFT_RIGHT, "left/right", "leftright"},
+ {GST_WAVPACK_JS_MODE_MID_SIDE, "mid/side", "midside"},
{0, NULL, NULL}
};