Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-24 09:36:04 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2011-02-25 22:38:56 +0300
commitbbc413f943b53d96aa85fe272ec413c85794019f (patch)
tree9f6804f11a01261d080691b737b0d6ea98a26f7d /libavformat/rmenc.c
parent99f42c27abfe916fa19ac0c18489c8bbf8525406 (diff)
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.c2
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");