Commit eeda26bc authored by michael's avatar michael

doxygenize


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7574 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 00bae7e9
...@@ -85,7 +85,7 @@ void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size) ...@@ -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 av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
{ {
int size = av_fifo_size(f); int size = av_fifo_size(f);
...@@ -105,7 +105,7 @@ int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void ...@@ -105,7 +105,7 @@ int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void
return 0; return 0;
} }
/* discard data from the fifo */ /** discard data from the fifo */
void av_fifo_drain(AVFifoBuffer *f, int size) void av_fifo_drain(AVFifoBuffer *f, int size)
{ {
f->rptr += size; f->rptr += size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment