diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-04 13:29:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-04 13:29:15 +0100 |
commit | a08194b4c51ebc7024f50eed0f09aa74058e15bb (patch) | |
tree | 1716b42c83f77e09dd934d3d4fd58e784e8e547a /libavformat | |
parent | 8d0b2aae71f01904e4a7ac0e8795592da5a0bd89 (diff) | |
parent | be6cde3ce86e9ecf9b52309d7ca68c410ced525d (diff) | |
download | ffmpeg-a08194b4c51ebc7024f50eed0f09aa74058e15bb.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
lavr: fix missing " in header documentation
aviobuf: Discard old buffered, previously read data in ffio_read_partial
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/aviobuf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 95a41bbbc6..7a73a1791f 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -538,6 +538,13 @@ int ffio_read_partial(AVIOContext *s, unsigned char *buf, int size) len = s->buf_end - s->buf_ptr; if (len == 0) { + /* Reset the buf_end pointer to the start of the buffer, to make sure + * the fill_buffer call tries to read as much data as fits into the + * full buffer, instead of just what space is left after buf_end. + * This avoids returning partial packets at the end of the buffer, + * for packet based inputs. + */ + s->buf_end = s->buf_ptr = s->buffer; fill_buffer(s); len = s->buf_end - s->buf_ptr; } |