diff options
author | 内田佳久 <yoshihisa.uchida@gmail.com> | 2013-01-05 23:11:09 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-05 23:11:09 +0100 |
commit | 7e5d4fa97d28e7f669351fc56742967b3eaac25d (patch) | |
tree | 338ea34119a52bac72bca945d960bf91e911952c /libavformat/mmf.c | |
parent | f3c9d66bafde9b8586bd63dd3307daa87352af75 (diff) | |
download | ffmpeg-7e5d4fa97d28e7f669351fc56742967b3eaac25d.tar.gz |
mmf.c: Do not write metadata into the SMAF Contents Info chunk.
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r-- | libavformat/mmf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c index 1d5a883c8e..a63d8cb30a 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -83,6 +83,8 @@ static int mmf_write_header(AVFormatContext *s) avio_w8(pb, 1); /* code type */ avio_w8(pb, 0); /* status */ avio_w8(pb, 0); /* counts */ + end_tag_be(pb, pos); + pos = ff_start_tag(pb, "OPDA"); avio_write(pb, "VN:libavcodec,", sizeof("VN:libavcodec,") -1); /* metadata ("ST:songtitle,VN:version,...") */ end_tag_be(pb, pos); |