From c957c8542676d092af1a812860c0b379738b7f01 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 8 Mar 2009 14:42:11 +0000 Subject: Replace all uses of the replaced av_fifo_read by av_fifo_generic_read Originally committed as revision 17873 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/fifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil') diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 2df177dd7e..26a81657d9 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -63,7 +63,7 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) { if (!f2) return -1; - av_fifo_read(f, f2->buffer, len); + av_fifo_generic_read(f, len, NULL, f2->buffer); f2->wptr += len; f2->wndx += len; av_free(f->buffer); -- cgit v1.2.3