diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-20 15:03:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-22 02:44:36 +0100 |
commit | 90ed2776ea7368f1b6cf07af5f29fd06efbfcd65 (patch) | |
tree | 29ba6321e5d9705f2b2b74c9cfe0755fb7a0fe58 /libavformat/rdt.c | |
parent | 34bb0575c164dcbe945add0f314d1c1889f9d23e (diff) | |
download | ffmpeg-90ed2776ea7368f1b6cf07af5f29fd06efbfcd65.tar.gz |
avio: rename av_alloc_put_byte -> avio_alloc_context for consistency
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 8d9ac969cb4ac3e3e18f6425703af4d7aec6c513)
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index bbc3de923b..d846533724 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -311,7 +311,7 @@ rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st, if (res > 0) { if (st->codec->codec_id == CODEC_ID_AAC) { memcpy (rdt->buffer, buf + pos, len - pos); - rdt->rmctx->pb = av_alloc_put_byte (rdt->buffer, len - pos, 0, + rdt->rmctx->pb = avio_alloc_context (rdt->buffer, len - pos, 0, NULL, NULL, NULL, NULL); } goto get_cache; |