Mercurial > libavcodec.hg
changeset 4572:669df346003b libavcodec
Doxygenize the comments for the av_mallocz_static() function.
author | takis |
---|---|
date | Thu, 22 Feb 2007 19:11:33 +0000 |
parents | 6f3ed8519dff |
children | 58afae0471ae |
files | avcodec.h |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/avcodec.h Thu Feb 22 19:10:55 2007 +0000 +++ b/avcodec.h Thu Feb 22 19:11:33 2007 +0000 @@ -2908,7 +2908,12 @@ 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);