summaryrefslogtreecommitdiff
path: root/libavformat/vocenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-21 12:08:31 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-21 12:08:31 +0000
commit6c77805fc84a63b74e5025b4d7eeea24c8138cf3 (patch)
tree740e6a723ac8d45f686f7842068d65f337f4b549 /libavformat/vocenc.c
parent5484dad7f6122a4d4dbc28e867a8c71d22ba2297 (diff)
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/vocenc.c')
-rw-r--r--libavformat/vocenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c
index 5b6e3c1680..590aa4854e 100644
--- a/libavformat/vocenc.c
+++ b/libavformat/vocenc.c
@@ -101,5 +101,5 @@ AVOutputFormat voc_muxer = {
voc_write_header,
voc_write_packet,
voc_write_trailer,
- .codec_tag={voc_codec_tags},
+ .codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0},
};