mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Doxygenize the comments for the av_mallocz_static() function.
Originally committed as revision 8084 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3d0a39fa2d
commit
9c5cb112ca
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user