projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d0a39f
)
Doxygenize the comments for the av_mallocz_static() function.
author
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 22 Feb 2007 19:11:33 +0000
(19:11 +0000)
committer
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 22 Feb 2007 19:11:33 +0000
(19:11 +0000)
Originally committed as revision 8084 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/avcodec.h
patch
|
blob
|
history
diff --git
a/libavcodec/avcodec.h
b/libavcodec/avcodec.h
index 7e3199498b477c12bb8003cff2288f17c6eb782d..bf9fd611754dbae11c72503d9926dca1c402bf75 100644
(file)
--- a/
libavcodec/avcodec.h
+++ b/
libavcodec/avcodec.h
@@
-2908,7
+2908,12
@@
void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size);
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);