diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:14:07 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:14:07 +0000 |
commit | 4267e90dd0e76d62f68de2e946047b80529ada08 (patch) | |
tree | 419a00797adbd51df7b2c01180a541beb7568b63 /libavcodec | |
parent | 8079a686c3ac6809e455bf710b09a3ce2ae7774d (diff) | |
download | ffmpeg-4267e90dd0e76d62f68de2e946047b80529ada08.tar.gz |
Doxygenize the comments for the av_fast_realloc() function.
Originally committed as revision 8086 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b65022f1a1..35c2a0a639 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2895,7 +2895,10 @@ extern AVBitStreamFilter mjpega_dump_header_bsf; /* memory */ /** - * realloc which does nothing if the block is large enough + * Reallocates the given block if it is not large enough, otherwise it + * does nothing. + * + * @see av_realloc */ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); |