Mercurial > libavutil.hg
changeset 228:a9a6ed6ec73d libavutil
doxygenize
author | michael |
---|---|
date | Wed, 17 Jan 2007 20:12:12 +0000 |
parents | 158b400d2f75 |
children | 3f5c648b82c4 |
files | fifo.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;