mmf: Write metadata into an Optional Data chunk
authorYoshihisa Uchida <yoshihisa.uchida@gmail.com>
Sat, 5 Jan 2013 22:11:09 +0000 (23:11 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Tue, 14 May 2013 15:14:38 +0000 (17:14 +0200)
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
libavformat/mmf.c

index 84c4ef7..61f1d7a 100644 (file)
@@ -83,7 +83,10 @@ static int mmf_write_header(AVFormatContext *s)
     avio_w8(pb, 0); /* code type */
     avio_w8(pb, 0); /* status */
     avio_w8(pb, 0); /* counts */
-    avio_write(pb, "VN:libavcodec,", sizeof("VN:libavcodec,") - 1); /* metadata ("ST:songtitle,VN:version,...") */
+    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);
 
     avio_write(pb, "ATR\x00", 4);