Module: libav Branch: master Commit: 3dff1bf99c65230cd62a06d4a4e5ab569a321eeb
Author: Yoshihisa Uchida <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sat Jan 5 23:11:09 2013 +0100 mmf: Write metadata into an Optional Data chunk Signed-off-by: Luca Barbato <[email protected]> --- libavformat/mmf.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/libavformat/mmf.c b/libavformat/mmf.c index 84c4ef7..61f1d7a 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -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); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
