summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2007-11-01 11:51:51 +0000
committerGuillaume Poirier <gpoirier@mplayerhq.hu>2007-11-01 11:51:51 +0000
commit22baf42c8378a74d3cae3a7560a48c37391abbd3 (patch)
tree48186889e49b110755feb43c2572ecdc40e77cc3 /libavutil/mem.h
parent83c95cd462b132e6b3a4b5047e3c38bd4e127398 (diff)
doxy/cosmetics fixes. Patch by Stefano Sabatini %stefano P sabatini-lala A posteP it %
Originally committed as revision 10893 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h
index db49c8d515..04f2572001 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -48,8 +48,8 @@ void *av_realloc(void *ptr, unsigned int size);
/**
* Free memory which has been allocated with av_malloc(z)() or av_realloc().
- * NOTE: ptr = NULL is explicitly allowed.
- * Note2: It is recommended that you use av_freep() instead.
+ * @note ptr = NULL is explicitly allowed.
+ * @note It is recommended that you use av_freep() instead.
*/
void av_free(void *ptr);
@@ -65,7 +65,7 @@ char *av_strdup(const char *s);
/**
* Free memory and set the pointer to NULL.
- * @param ptr pointer to the pointer which should be freed.
+ * @param ptr Pointer to the pointer which should be freed.
*/
void av_freep(void *ptr);