diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-06-20 10:25:00 -0700 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-06-21 16:11:29 +0300 |
commit | 67ffcb9613b7bd35fd37a67a0d2363bd4d564605 (patch) | |
tree | c8b70b8bd7e4865791b4ef771868c92b7a2f4185 /libavformat/ivfdec.c | |
parent | 89ffd189efb3ff53bfaa3e7b3ad4e18d6c9ba03d (diff) | |
download | ffmpeg-67ffcb9613b7bd35fd37a67a0d2363bd4d564605.tar.gz |
lavf: Make codec_tag arrays constant
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/ivfdec.c')
-rw-r--r-- | libavformat/ivfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ivfdec.c b/libavformat/ivfdec.c index 9482fc2ab0..b3555f42a4 100644 --- a/libavformat/ivfdec.c +++ b/libavformat/ivfdec.c @@ -87,5 +87,5 @@ AVInputFormat ff_ivf_demuxer = { .read_header = read_header, .read_packet = read_packet, .flags = AVFMT_GENERIC_INDEX, - .codec_tag = (const AVCodecTag*[]){ ff_codec_bmp_tags, 0 }, + .codec_tag = (const AVCodecTag* const []){ ff_codec_bmp_tags, 0 }, }; |