comparison mathops.h @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents 19e2f1a50aa7
children d6bab465b82c
comparison
equal deleted inserted replaced
8589:a29b5b5c3c9d 8590:7a463923ecd1
22 #ifndef AVCODEC_MATHOPS_H 22 #ifndef AVCODEC_MATHOPS_H
23 #define AVCODEC_MATHOPS_H 23 #define AVCODEC_MATHOPS_H
24 24
25 #include "libavutil/common.h" 25 #include "libavutil/common.h"
26 26
27 #ifdef ARCH_X86_32 27 #if ARCH_X86_32
28 28
29 #include "x86/mathops.h" 29 #include "x86/mathops.h"
30 30
31 #elif defined(ARCH_ARM) 31 #elif ARCH_ARM
32 32
33 #include "arm/mathops.h" 33 #include "arm/mathops.h"
34 34
35 #elif defined(ARCH_PPC) 35 #elif ARCH_PPC
36 36
37 #include "ppc/mathops.h" 37 #include "ppc/mathops.h"
38 38
39 #elif defined(ARCH_BFIN) 39 #elif ARCH_BFIN
40 40
41 #include "bfin/mathops.h" 41 #include "bfin/mathops.h"
42 42
43 #endif 43 #endif
44 44