diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 12:08:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 12:08:31 +0000 |
commit | 6c77805fc84a63b74e5025b4d7eeea24c8138cf3 (patch) | |
tree | 740e6a723ac8d45f686f7842068d65f337f4b549 /libavformat/vocdec.c | |
parent | 5484dad7f6122a4d4dbc28e867a8c71d22ba2297 (diff) | |
download | ffmpeg-6c77805fc84a63b74e5025b4d7eeea24c8138cf3.tar.gz |
get rid of the [4] limitation of codec tag lists
Originally committed as revision 7596 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vocdec.c')
-rw-r--r-- | libavformat/vocdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c index f13120ef11..21ef8c2071 100644 --- a/libavformat/vocdec.c +++ b/libavformat/vocdec.c @@ -152,5 +152,5 @@ AVInputFormat voc_demuxer = { voc_read_header, voc_read_packet, voc_read_close, - .codec_tag={voc_codec_tags}, + .codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0}, }; |