comparison avcodec.h @ 4572:669df346003b libavcodec

Doxygenize the comments for the av_mallocz_static() function.
author takis
date Thu, 22 Feb 2007 19:11:33 +0000
parents 6f3ed8519dff
children 58afae0471ae
comparison
equal deleted inserted replaced
4571:6f3ed8519dff 4572:669df346003b
2906 * call av_free_static to release all staticaly allocated tables 2906 * call av_free_static to release all staticaly allocated tables
2907 */ 2907 */
2908 void av_free_static(void); 2908 void av_free_static(void);
2909 2909
2910 /** 2910 /**
2911 * allocation of static arrays - do not use for normal allocation. 2911 * Allocation of static arrays.
2912 *
2913 * @warning Do not use for normal allocation.
2914 *
2915 * @param[in] size The amount of memory you need in bytes.
2916 * @return Block of memory of the requested size.
2912 */ 2917 */
2913 void *av_mallocz_static(unsigned int size); 2918 void *av_mallocz_static(unsigned int size);
2914 2919
2915 /** 2920 /**
2916 * Same as av_mallocz_static(), but does a realloc. 2921 * Same as av_mallocz_static(), but does a realloc.