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/rmenc.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/rmenc.c')
-rw-r--r-- | libavformat/rmenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rmenc.c b/libavformat/rmenc.c index 5d311d3599..29a6a35d18 100644 --- a/libavformat/rmenc.c +++ b/libavformat/rmenc.c @@ -184,7 +184,7 @@ static int rv10_write_header(AVFormatContext *ctx, coded_frame_size = (stream->enc->bit_rate * stream->enc->frame_size) / (8 * sample_rate); /* audio codec info */ - put_tag(s, ".ra"); + avio_write(s, ".ra", 3); avio_w8(s, 0xfd); avio_wb32(s, 0x00040000); /* version */ ffio_wfourcc(s, ".ra4"); |