diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:11:33 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:11:33 +0000 |
commit | 9c5cb112caddfa80707489c45fafadec2a1d7ce7 (patch) | |
tree | 533651a28a4a0721dfc21a819fa910a549cdfc79 /libavcodec | |
parent | 3d0a39fa2d4c88d4bd86834e7ef9f1e182b7fd2e (diff) | |
download | ffmpeg-9c5cb112caddfa80707489c45fafadec2a1d7ce7.tar.gz |
Doxygenize the comments for the av_mallocz_static() function.
Originally committed as revision 8084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7e3199498b..bf9fd61175 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2908,7 +2908,12 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size); void av_free_static(void); /** - * allocation of static arrays - do not use for normal allocation. + * Allocation of static arrays. + * + * @warning Do not use for normal allocation. + * + * @param[in] size The amount of memory you need in bytes. + * @return Block of memory of the requested size. */ void *av_mallocz_static(unsigned int size); |