From 6c77805fc84a63b74e5025b4d7eeea24c8138cf3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 21 Jan 2007 12:08:31 +0000 Subject: get rid of the [4] limitation of codec tag lists Originally committed as revision 7596 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/au.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/au.c') diff --git a/libavformat/au.c b/libavformat/au.c index 0ec089b15a..4bd8b1e253 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -190,7 +190,7 @@ AVInputFormat au_demuxer = { au_read_packet, au_read_close, pcm_read_seek, - .codec_tag= {codec_au_tags}, + .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, }; #endif @@ -206,6 +206,6 @@ AVOutputFormat au_muxer = { au_write_header, au_write_packet, au_write_trailer, - .codec_tag= {codec_au_tags}, + .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, }; #endif //CONFIG_AU_MUXER -- cgit v1.2.3