diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-24 07:36:04 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-25 14:38:56 -0500 |
commit | bbc413f943b53d96aa85fe272ec413c85794019f (patch) | |
tree | 9f6804f11a01261d080691b737b0d6ea98a26f7d /libavformat/mmf.c | |
parent | 99f42c27abfe916fa19ac0c18489c8bbf8525406 (diff) | |
download | ffmpeg-bbc413f943b53d96aa85fe272ec413c85794019f.tar.gz |
lavf: replace remaining uses of put_tag with avio_write
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r-- | libavformat/mmf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c index 76b27dd71e..bcb862c4b5 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -79,7 +79,7 @@ static int mmf_write_header(AVFormatContext *s) avio_w8(pb, 0); /* code type */ avio_w8(pb, 0); /* status */ avio_w8(pb, 0); /* counts */ - put_tag(pb, "VN:libavcodec,"); /* metadata ("ST:songtitle,VN:version,...") */ + 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); |