Constify some static arrays everywhere

This commit is contained in:
Sebastian Dröge 2015-01-21 09:56:41 +01:00
parent b130321dd0
commit 2c5ba12f28
2 changed files with 5 additions and 5 deletions

View 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"},

View 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"},