projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fa378a
)
Doxygenize the comments for the av_realloc_static() function.
author
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 22 Feb 2007 19:10:55 +0000
(19:10 +0000)
committer
Panagiotis Issaris
<takis.issaris@uhasselt.be>
Thu, 22 Feb 2007 19:10:55 +0000
(19:10 +0000)
Originally committed as revision 8083 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/avcodec.h
patch
|
blob
|
history
diff --git
a/libavcodec/avcodec.h
b/libavcodec/avcodec.h
index
1b1946a
..
7e31994
100644
(file)
--- a/
libavcodec/avcodec.h
+++ b/
libavcodec/avcodec.h
@@
-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);