# HG changeset patch # User michael # Date 1169064732 0 # Node ID a9a6ed6ec73d6e79dc25363f4b4da97f50a33e26 # Parent 158b400d2f75eca54a0f088fa400d6c210889a86 doxygenize diff -r 158b400d2f75 -r a9a6ed6ec73d fifo.c --- a/fifo.c Wed Jan 17 20:11:23 2007 +0000 +++ b/fifo.c Wed Jan 17 20:12:12 2007 +0000 @@ -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;