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:
authorClément Bœsch <ubitux@gmail.com>2011-11-14 03:53:50 +0400
committerClément Bœsch <ubitux@gmail.com>2011-11-14 10:22:30 +0400
commit53d70a334ad8fa081758e02b285863da276af051 (patch)
treea7e0f775cf11ab908285663f814f44cf5f9f99a1 /libavformat/act.c
parent39edfcc9e8cc107b4e4ba42ba16f745eaada6db8 (diff)
Rename remaining get_buffer to avio_read.
Diffstat (limited to 'libavformat/act.c')
-rw-r--r--libavformat/act.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/act.c b/libavformat/act.c
index a21f2a3433..6e2772c733 100644
--- a/libavformat/act.c
+++ b/libavformat/act.c
@@ -126,7 +126,7 @@ static int read_packet(AVFormatContext *s,
if(s->streams[0]->codec->sample_rate==4400 && !ctx->second_packet)
{
- ret = get_buffer(pb, ctx->audio_buffer, frame_size);
+ ret = avio_read(pb, ctx->audio_buffer, frame_size);
if(ret<0)
return ret;
@@ -165,7 +165,7 @@ static int read_packet(AVFormatContext *s,
}
else // 8000 Hz
{
- ret = get_buffer(pb, ctx->audio_buffer, frame_size);
+ ret = avio_read(pb, ctx->audio_buffer, frame_size);
if(ret<0)
return ret;