ext/wavpack/gstwavpackenc.c: Minor clean-up: use enum values instead of hardcoded...
authorSebastian Dröge <slomo@circular-chaos.org>
Thu, 11 Jan 2007 19:51:04 +0000 (19:51 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 11 Jan 2007 19:51:04 +0000 (19:51 +0000)
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).

ChangeLog
ext/wavpack/gstwavpackenc.c

index f6bd0b613c6287bf81d494ff74ea972f7031433d..80fad93eb42e9d4c0e3bdba7f83faf875a02771f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
+
+       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).
+
 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
 
        * gst/mve/gstmvedemux.c: (gst_mve_demux_get_src_query_types),
index 336580c470be805d42ff2b4cb202613e89774d8d..1661d0890cb7a8e1fd56c90d59f9acbf2710d098 100644 (file)
@@ -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}
     };