mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
avoid code duplication
Originally committed as revision 7573 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+1
-3
@@ -99,9 +99,7 @@ int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void
|
||||
memcpy(dest, f->rptr, len);
|
||||
dest = (uint8_t*)dest + len;
|
||||
}
|
||||
f->rptr += len;
|
||||
if (f->rptr >= f->end)
|
||||
f->rptr = f->buffer;
|
||||
av_fifo_drain(f, len);
|
||||
buf_size -= len;
|
||||
}
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user