diff common.h @ 82:8fb151c4d4c7 libavutil

Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
author lucabe
date Wed, 19 Jul 2006 07:28:58 +0000
parents 624fc3ad183a
children 59433f391f2d
line wrap: on
line diff
--- a/common.h	Tue Jul 18 11:00:55 2006 +0000
+++ b/common.h	Wed Jul 19 07:28:58 2006 +0000
@@ -355,4 +355,9 @@
 #define STOP_TIMER(id) {}
 #endif
 
+/* memory */
+void *av_malloc(unsigned int size);
+void *av_realloc(void *ptr, unsigned int size);
+void av_free(void *ptr);
+
 #endif /* COMMON_H */