[FFmpeg-cvslog] lavf: Make codec_tag arrays constant

Ronald S. Bultje git at videolan.org
Thu Jun 21 22:41:01 CEST 2012


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Wed Jun 20 10:25:00 2012 -0700| [67ffcb9613b7bd35fd37a67a0d2363bd4d564605] | committer: Martin Storsjö

lavf: Make codec_tag arrays constant

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=67ffcb9613b7bd35fd37a67a0d2363bd4d564605
---

 libavformat/cafdec.c |    2 +-
 libavformat/ivfdec.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index e35026f..d5ee9be 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -394,5 +394,5 @@ AVInputFormat ff_caf_demuxer = {
     .read_header    = read_header,
     .read_packet    = read_packet,
     .read_seek      = read_seek,
-    .codec_tag      = (const AVCodecTag*[]){ ff_codec_caf_tags, 0 },
+    .codec_tag      = (const AVCodecTag* const []){ ff_codec_caf_tags, 0 },
 };
diff --git a/libavformat/ivfdec.c b/libavformat/ivfdec.c
index 9482fc2..b3555f4 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 },
 };



More information about the ffmpeg-cvslog mailing list