[Ffmpeg-cvslog] r7574 - trunk/libavutil/fifo.c

michael subversion
Wed Jan 17 21:12:12 CET 2007


Author: michael
Date: Wed Jan 17 21:12:12 2007
New Revision: 7574

Modified:
   trunk/libavutil/fifo.c

Log:
doxygenize


Modified: trunk/libavutil/fifo.c
==============================================================================
--- trunk/libavutil/fifo.c	(original)
+++ trunk/libavutil/fifo.c	Wed Jan 17 21:12:12 2007
@@ -85,7 +85,7 @@
 }
 
 
-/* get data from the fifo (return -1 if not enough data) */
+/** get data from the fifo (return -1 if not enough data) */
 int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
 {
     int size = av_fifo_size(f);
@@ -105,7 +105,7 @@
     return 0;
 }
 
-/* discard data from the fifo */
+/** discard data from the fifo */
 void av_fifo_drain(AVFifoBuffer *f, int size)
 {
     f->rptr += size;




More information about the ffmpeg-cvslog mailing list