# HG changeset patch # User takis # Date 1172171455 0 # Node ID 6f3ed8519dff9c58df63f744eea9beb28b50a75a # Parent 58be423405dba53094332bc62a37f84e44c20a18 Doxygenize the comments for the av_realloc_static() function. diff -r 58be423405db -r 6f3ed8519dff avcodec.h --- a/avcodec.h Thu Feb 22 19:09:35 2007 +0000 +++ b/avcodec.h Thu Feb 22 19:10:55 2007 +0000 @@ -2913,7 +2913,11 @@ 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);