mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-20 22:41:11 +00:00
simplify
Originally committed as revision 7568 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
80036204af
commit
f81b99b82b
@ -50,15 +50,12 @@ int av_fifo_size(AVFifoBuffer *f)
|
||||
*/
|
||||
int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size)
|
||||
{
|
||||
int len;
|
||||
int size = f->wptr - f->rptr;
|
||||
if (size < 0)
|
||||
size += f->end - f->buffer;
|
||||
int size = av_fifo_size(f);
|
||||
|
||||
if (size < buf_size)
|
||||
return -1;
|
||||
while (buf_size > 0) {
|
||||
len = FFMIN(f->end - f->rptr, buf_size);
|
||||
int len = FFMIN(f->end - f->rptr, buf_size);
|
||||
memcpy(buf, f->rptr, len);
|
||||
buf += len;
|
||||
f->rptr += len;
|
||||
|
Loading…
Reference in New Issue
Block a user