]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/mem.c
add the possibility to choose aac profile
[ffmpeg] / libavutil / mem.c
index c95892b361749eb8748d0c68883875be8bc7721d..a91ac4a07b81a365f941abab660fd9e8f7035954 100644 (file)
@@ -111,11 +111,6 @@ void *av_realloc(void *ptr, unsigned int size)
 #endif
 }
 
-/**
- * Free memory which has been allocated with av_malloc(z)() or av_realloc().
- * NOTE: ptr = NULL is explicetly allowed
- * Note2: it is recommended that you use av_freep() instead
- */
 void av_free(void *ptr)
 {
     /* XXX: this test should not be needed on most libcs */
@@ -127,10 +122,6 @@ void av_free(void *ptr)
 #endif
 }
 
-/**
- * Frees memory and sets the pointer to NULL.
- * @param arg pointer to the pointer which should be freed
- */
 void av_freep(void *arg)
 {
     void **ptr= (void**)arg;