Constify some static arrays everywhere
authorSebastian Dröge <sebastian@centricular.com>
Wed, 21 Jan 2015 08:56:41 +0000 (09:56 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 21 Jan 2015 08:56:41 +0000 (09:56 +0100)
ext/lame/gstlamemp3enc.c
ext/twolame/gsttwolamemp2enc.c

index ee528be..8fcd00a 100644 (file)
@@ -119,7 +119,7 @@ static GType
 gst_lamemp3enc_target_get_type (void)
 {
   static GType lame_target_type = 0;
-  static GEnumValue lame_targets[] = {
+  static const GEnumValue lame_targets[] = {
     {LAMEMP3ENC_TARGET_QUALITY, "Quality", "quality"},
     {LAMEMP3ENC_TARGET_BITRATE, "Bitrate", "bitrate"},
     {0, NULL, NULL}
@@ -144,7 +144,7 @@ static GType
 gst_lamemp3enc_encoding_engine_quality_get_type (void)
 {
   static GType lame_encoding_engine_quality_type = 0;
-  static GEnumValue lame_encoding_engine_quality[] = {
+  static const GEnumValue lame_encoding_engine_quality[] = {
     {0, "Fast", "fast"},
     {1, "Standard", "standard"},
     {2, "High", "high"},
index 12b6f5a..63f1fd3 100644 (file)
@@ -113,7 +113,7 @@ static GType
 gst_two_lame_mode_get_type (void)
 {
   static GType two_lame_mode_type = 0;
-  static GEnumValue two_lame_modes[] = {
+  static const GEnumValue two_lame_modes[] = {
     {TWOLAME_AUTO_MODE, "Auto", "auto"},
     {TWOLAME_STEREO, "Stereo", "stereo"},
     {TWOLAME_JOINT_STEREO, "Joint Stereo", "joint"},
@@ -134,7 +134,7 @@ static GType
 gst_two_lame_padding_get_type (void)
 {
   static GType two_lame_padding_type = 0;
-  static GEnumValue two_lame_padding[] = {
+  static const GEnumValue two_lame_padding[] = {
     {TWOLAME_PAD_NO, "No Padding", "never"},
     {TWOLAME_PAD_ALL, "Always Pad", "always"},
     {0, NULL, NULL}
@@ -152,7 +152,7 @@ static GType
 gst_two_lame_emphasis_get_type (void)
 {
   static GType two_lame_emphasis_type = 0;
-  static GEnumValue two_lame_emphasis[] = {
+  static const GEnumValue two_lame_emphasis[] = {
     {TWOLAME_EMPHASIS_N, "No emphasis", "none"},
     {TWOLAME_EMPHASIS_5, "50/15 ms", "5"},
     {TWOLAME_EMPHASIS_C, "CCIT J.17", "ccit"},