diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-17 20:12:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-17 20:12:12 +0000 |
commit | be65b41f907d54b6d339791ba377779e6aaa8f77 (patch) | |
tree | b70dc9b16799b44dcd0b7d68381d000ce66230e0 | |
parent | 3da97cfdfc4f4217e1629ea509a997f3b1bf7039 (diff) | |
download | ffmpeg-be65b41f907d54b6d339791ba377779e6aaa8f77.tar.gz |
doxygenize
Originally committed as revision 7574 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/fifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 635df2dbf8..fb06765a16 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -85,7 +85,7 @@ void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size) } -/* 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 @@ int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void return 0; } -/* discard data from the fifo */ +/** discard data from the fifo */ void av_fifo_drain(AVFifoBuffer *f, int size) { f->rptr += size; |