diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-09-08 00:58:24 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-09-08 00:58:24 +0000 |
commit | 1993f8d6404a123a3c535b714bf1d55e84a81dc2 (patch) | |
tree | 9ef34f06a058e34d3495243f2c12f74539a73e3d /libavformat | |
parent | 59ded10ca2dbce7aebb5e2e934fe6a11dfa33dc7 (diff) | |
download | ffmpeg-1993f8d6404a123a3c535b714bf1d55e84a81dc2.tar.gz |
terminate tag tables by CODEC_ID_NONE
Originally committed as revision 15259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 01977c1941..f1afa82a5c 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -550,6 +550,7 @@ static const AVCodecTag codec_3gp_tags[] = { { CODEC_ID_AAC, MKTAG('m','p','4','a') }, { CODEC_ID_AMR_NB, MKTAG('s','a','m','r') }, { CODEC_ID_AMR_WB, MKTAG('s','a','w','b') }, + { CODEC_ID_NONE, 0 }, }; static const AVCodecTag mov_pix_fmt_tags[] = { @@ -566,6 +567,7 @@ static const AVCodecTag codec_ipod_tags[] = { { CODEC_ID_AAC, MKTAG('m','p','4','a') }, { CODEC_ID_ALAC, MKTAG('a','l','a','c') }, { CODEC_ID_AC3, MKTAG('a','c','-','3') }, + { CODEC_ID_NONE, 0 }, }; static int mov_find_codec_tag(AVFormatContext *s, MOVTrack *track) |