summaryrefslogtreecommitdiff
path: root/libavutil/fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/fifo.c')
-rw-r--r--libavutil/fifo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c
index 08b5977a1a..19ec13e63d 100644
--- a/libavutil/fifo.c
+++ b/libavutil/fifo.c
@@ -76,17 +76,17 @@ void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
av_fifo_generic_write(f, (void *)buf, size, NULL);
}
-int av_fifo_generic_write(AVFifoBuffer *f, void *buf, int size, int (*func)(void*, void*, int))
+int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
{
int total = size;
do {
int len = FFMIN(f->end - f->wptr, size);
if(func) {
- if(func(buf, f->wptr, len) <= 0)
+ if(func(src, f->wptr, len) <= 0)
break;
} else {
- memcpy(f->wptr, buf, len);
- buf = (uint8_t*)buf + len;
+ memcpy(f->wptr, src, len);
+ src = (uint8_t*)src + len;
}
f->wptr += len;
if (f->wptr >= f->end)