diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-24 23:52:52 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-24 23:52:52 +0000 |
commit | 33147993689223956d735e691dca45588a10c28f (patch) | |
tree | 20383ab46bf7e1c97f57211c8c8612b1077fec9f | |
parent | 09ef1ace4be1f6767013f5502a609723b2d048b1 (diff) | |
download | ffmpeg-33147993689223956d735e691dca45588a10c28f.tar.gz |
Extend doxy for the src parameter of av_fifo_generic_write().
@patchby Tomas Härdin |tomas dot hardin at codemill dot se|
Originally committed as revision 22043 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/fifo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/fifo.h b/libavutil/fifo.h index a904dfd02e..68ed064c1d 100644 --- a/libavutil/fifo.h +++ b/libavutil/fifo.h @@ -81,7 +81,8 @@ int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void (*func) /** * Feeds data from a user-supplied callback to an AVFifoBuffer. * @param *f AVFifoBuffer to write to - * @param *src data source + * @param *src data source; non-const since it may be used as a + * modifiable context by the function defined in func * @param size number of bytes to write * @param *func generic write function; the first parameter is src, * the second is dest_buf, the third is dest_buf_size. |