comparison mem.h @ 873:4d9ad0ed07d0 libavutil

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents d0230d2b1696
children 0795a743bda1
comparison
equal deleted inserted replaced
872:9d32a031ab0b 873:4d9ad0ed07d0
24 */ 24 */
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 "common.h" 29 #include "attributes.h"
30 30
31 #if defined(__ICC) || defined(__SUNPRO_C) 31 #if defined(__ICC) || defined(__SUNPRO_C)
32 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v 32 #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 33 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
34 #elif defined(__TI_COMPILER_VERSION__) 34 #elif defined(__TI_COMPILER_VERSION__)