diff options
author | Luca Abeni <lucabe72@email.it> | 2006-07-19 07:28:58 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-07-19 07:28:58 +0000 |
commit | cea8f6f323d661b5412d9cc3d1be6d3026f1b213 (patch) | |
tree | c43e068722f937ff7b4fd01baa621b7bce06e73b /libavutil/common.h | |
parent | b8889ea51f763c71a7cfadb5ec11e6e200ce8de5 (diff) | |
download | ffmpeg-cea8f6f323d661b5412d9cc3d1be6d3026f1b213.tar.gz |
Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
Originally committed as revision 5784 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index fe7ff571b3..4a92cd31cc 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -355,4 +355,9 @@ tend= read_time();\ #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 */ |