summaryrefslogtreecommitdiff
path: root/libavcodec/libxvidff.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 16:09:21 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 16:09:21 +0000
commit2ba8301769b770ec96ea8f4c02da78a25c6458fe (patch)
tree0f2fa2e8597e9f49f5c8487bb73c3dab4a7de0d3 /libavcodec/libxvidff.c
parentaf8aae3fa31f8e7ed0645b3bbbc62ea5dc47e09c (diff)
Mark all pix_fmts and supported_framerates compound literals as const.
Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libxvidff.c')
-rw-r--r--libavcodec/libxvidff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libxvidff.c b/libavcodec/libxvidff.c
index bdf70a09df..bb73f505bb 100644
--- a/libavcodec/libxvidff.c
+++ b/libavcodec/libxvidff.c
@@ -775,6 +775,6 @@ AVCodec libxvid_encoder = {
ff_xvid_encode_init,
ff_xvid_encode_frame,
ff_xvid_encode_close,
- .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
+ .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("libxvidcore MPEG-4 part 2"),
};