Commit f4d70ddf authored by takis's avatar takis

Doxygenize the comments for the av_mallocz_static() function.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8084 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6c4b944f
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment