1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

Doxygenize the comments for the av_fast_realloc() function.

Originally committed as revision 8086 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Panagiotis Issaris 2007-02-22 19:14:07 +00:00
parent 8079a686c3
commit 4267e90dd0

View File

@ -2895,7 +2895,10 @@ extern AVBitStreamFilter mjpega_dump_header_bsf;
/* memory */
/**
* realloc which does nothing if the block is large enough
* Reallocates the given block if it is not large enough, otherwise it
* does nothing.
*
* @see av_realloc
*/
void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);