Browse Source

Doxygenize the comments for the av_realloc_static() function.

Originally committed as revision 8083 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 19 years ago
parent
commit
3d0a39fa2d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavcodec/avcodec.h

+ 5
- 1
libavcodec/avcodec.h View File

@@ -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);



Loading…
Cancel
Save