diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-26 18:14:31 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-26 18:14:31 +0000 |
commit | 276fc8a4e269ed1375fc787b3b199a500a5a346d (patch) | |
tree | ab6f1e238c99e43e8e59f42e4d42e1f98e72a499 | |
parent | cbabccc3674241bbe466befc3acba261c3f5cbda (diff) | |
download | ffmpeg-276fc8a4e269ed1375fc787b3b199a500a5a346d.tar.gz |
Add missing avutil.h include to libavutil/mem.h
Originally committed as revision 23803 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/mem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index 561def5d8e..2a93135594 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -27,6 +27,7 @@ #define AVUTIL_MEM_H #include "attributes.h" +#include "avutil.h" #if defined(__ICC) && _ICC < 1200 || defined(__SUNPRO_C) #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v |