diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:10:55 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:10:55 +0000 |
commit | 3d0a39fa2d4c88d4bd86834e7ef9f1e182b7fd2e (patch) | |
tree | ba6408c8e7105f499a41eeda41265af458bf9848 /libavcodec | |
parent | 2fa378a72ca885c2c7ffc04d09fbc216f951f4bc (diff) | |
download | ffmpeg-3d0a39fa2d4c88d4bd86834e7ef9f1e182b7fd2e.tar.gz |
Doxygenize the comments for the av_realloc_static() function.
Originally committed as revision 8083 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1b1946a64a..7e3199498b 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2913,7 +2913,11 @@ void av_free_static(void); void *av_mallocz_static(unsigned int size); /** - * same as above, but does realloc + * Same as av_mallocz_static(), but does a realloc. + * + * @param[in] ptr The block of memory to reallocate. + * @param[in] size The requested size. + * @return Block of memory of requested size. */ void *av_realloc_static(void *ptr, unsigned int size); |