comparison mem.h @ 952:e461801687c9 libavutil

Add missing avutil.h include to libavutil/mem.h
author mru
date Sat, 26 Jun 2010 18:14:31 +0000
parents 90651a771549
children e34e8d654ded
comparison
equal deleted inserted replaced
951:1cf2ecdd1127 952:e461801687c9
25 25
26 #ifndef AVUTIL_MEM_H 26 #ifndef AVUTIL_MEM_H
27 #define AVUTIL_MEM_H 27 #define AVUTIL_MEM_H
28 28
29 #include "attributes.h" 29 #include "attributes.h"
30 #include "avutil.h"
30 31
31 #if defined(__ICC) && _ICC < 1200 || defined(__SUNPRO_C) 32 #if defined(__ICC) && _ICC < 1200 || defined(__SUNPRO_C)
32 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v 33 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
33 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v 34 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
34 #elif defined(__TI_COMPILER_VERSION__) 35 #elif defined(__TI_COMPILER_VERSION__)