Commit 46778ab2 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/aviobuf: Do not resize the buffer in ffio_ensure_seekback() if there is no read function

Without a read function there can never be more data read than the buffer could
hold
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0ace686a
......@@ -805,7 +805,7 @@ int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
buf_size += s->buf_ptr - s->buffer + max_buffer_size;
if (buf_size < filled || s->seekable)
if (buf_size < filled || s->seekable || !s->read_packet)
return 0;
av_assert0(!s->write_flag);
......
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