changeset 683:0bba880f7c22 libavutil

Replace all uses of the replaced av_fifo_read by av_fifo_generic_read
author reimar
date Sun, 08 Mar 2009 14:42:11 +0000
parents 79f4e9cc2e07
children 68c2c0caf942
files fifo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/fifo.c	Sun Mar 08 14:35:13 2009 +0000
+++ b/fifo.c	Sun Mar 08 14:42:11 2009 +0000
@@ -63,7 +63,7 @@
 
         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);