summaryrefslogtreecommitdiffstats
path: root/gst/videobox
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-05-10 10:29:54 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-05-10 10:29:54 +0000
commit11cb7a31b422607c1e68aef34aa4d4b3f421079b (patch)
treee670d60d732c118c3c5c0bcf310234d8f242d73f /gst/videobox
parente412f6d4339c789bcc89a46bfef51d46c9f39293 (diff)
Const-ify GEnumValue arrays.
Original commit message from CVS: * ext/esd/esdmon.c: (gst_esdmon_depths_get_type), (gst_esdmon_channels_get_type): * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type): * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type): * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type): * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type): * gst/alpha/gstalpha.c: (gst_alpha_method_get_type): * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type): * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type): * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type): * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type): * gst/videomixer/videomixer.c: (gst_video_mixer_background_get_type): Const-ify GEnumValue arrays.
Diffstat (limited to 'gst/videobox')
-rw-r--r--gst/videobox/gstvideobox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videobox/gstvideobox.c b/gst/videobox/gstvideobox.c
index efe11769..602d4746 100644
--- a/gst/videobox/gstvideobox.c
+++ b/gst/videobox/gstvideobox.c
@@ -144,7 +144,7 @@ static GType
gst_video_box_fill_get_type (void)
{
static GType video_box_fill_type = 0;
- static GEnumValue video_box_fill[] = {
+ static const GEnumValue video_box_fill[] = {
{VIDEO_BOX_FILL_BLACK, "Black", "black"},
{VIDEO_BOX_FILL_GREEN, "Colorkey green", "green"},
{VIDEO_BOX_FILL_BLUE, "Colorkey blue", "blue"},