From c18545929e134845ff57e3e98f494965e42ab10a Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 24 Aug 2008 16:51:50 +0000 Subject: Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const * Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/vocdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/vocdec.c') diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c index afba3c56b1..178ecb5ac6 100644 --- a/libavformat/vocdec.c +++ b/libavformat/vocdec.c @@ -141,5 +141,5 @@ AVInputFormat voc_demuxer = { voc_probe, voc_read_header, voc_read_packet, - .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0}, + .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0}, }; -- cgit v1.2.3