diff 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
line wrap: on
line diff
--- a/avcodec.h	Thu Feb 22 19:10:55 2007 +0000
+++ b/avcodec.h	Thu Feb 22 19:11:33 2007 +0000
@@ -2908,7 +2908,12 @@
 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);