Commit 7383a835 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/aviobuf: Only downscale the buffer once it has been used

The code mistook the first iteration sometimes as the end
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 162414ce
......@@ -542,7 +542,7 @@ static void fill_buffer(AVIOContext *s)
/* make buffer smaller in case it ended up large after probing */
if (s->read_packet && s->orig_buffer_size && s->buffer_size > s->orig_buffer_size) {
if (dst == s->buffer) {
if (dst == s->buffer && s->buf_ptr != dst) {
int ret = ffio_set_buf_size(s, s->orig_buffer_size);
if (ret < 0)
av_log(s, AV_LOG_WARNING, "Failed to decrease buffer size\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment