diff fifo.h @ 691:4e9e0c52ed08 libavutil

Reorder arguments for av_fifo_generic_read to be more logical and consistent with av_fifo_generic_write.
author reimar
date Mon, 09 Mar 2009 17:47:47 +0000
parents 91216685a7ae
children 2f890bb12bbc
line wrap: on
line diff
--- a/fifo.h	Mon Mar 09 15:52:45 2009 +0000
+++ b/fifo.h	Mon Mar 09 17:47:47 2009 +0000
@@ -68,7 +68,7 @@
  * @param *func generic read function
  * @param *dest data destination
  */
-int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest);
+int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void (*func)(void*, void*, int));
 
 /**
  * Feeds data from a user-supplied callback to an AVFifoBuffer.