Commit 6c4b944f authored by takis's avatar takis

Doxygenize the comments for the av_realloc_static() function.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8083 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5d19f986
......@@ -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);
......
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