]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Move unaltered av_malloc() comments to the header file.
authortakis <takis@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 5 Mar 2007 13:45:52 +0000 (13:45 +0000)
committertakis <takis@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 5 Mar 2007 13:45:52 +0000 (13:45 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8250 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavutil/common.h
libavutil/mem.c

index c5c88c19025359be043acf9b4efc2309a710f5eb..954cb5c06e59f0fa3aa46749df07b7c3b125acf2 100644 (file)
@@ -330,6 +330,12 @@ tend= read_time();\
 #endif
 
 /* memory */
+
+/**
+ * Memory allocation of size byte with alignment suitable for all
+ * memory accesses (including vectors if available on the
+ * CPU). av_malloc(0) must return a non NULL pointer.
+ */
 void *av_malloc(unsigned int size);
 void *av_realloc(void *ptr, unsigned int size);
 void av_free(void *ptr);
index fb0fb63e20864b7ec663e842a743fb2253783d79..1a5d00a9100e815bd2b57a00df1927de25dc523a 100644 (file)
    memory allocator. You do not need to suppress this file because the
    linker will do it automatically */
 
-/**
- * Memory allocation of size byte with alignment suitable for all
- * memory accesses (including vectors if available on the
- * CPU). av_malloc(0) must return a non NULL pointer.
- */
 void *av_malloc(unsigned int size)
 {
     void *ptr;