comparison mathops.h @ 9678:f1f95c604b56 libavcodec

mathops: whitespace cosmetics
author mru
date Wed, 20 May 2009 18:49:52 +0000
parents 005cf8ba225f
children 599c7bfa6e20
comparison
equal deleted inserted replaced
9677:592097778fa0 9678:f1f95c604b56
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 #if ARCH_X86 27 #if ARCH_X86
28 28 # include "x86/mathops.h"
29 #include "x86/mathops.h"
30
31 #elif ARCH_ARM 29 #elif ARCH_ARM
32 30 # include "arm/mathops.h"
33 #include "arm/mathops.h"
34
35 #elif ARCH_PPC 31 #elif ARCH_PPC
36 32 # include "ppc/mathops.h"
37 #include "ppc/mathops.h"
38
39 #elif ARCH_BFIN 33 #elif ARCH_BFIN
40 34 # include "bfin/mathops.h"
41 #include "bfin/mathops.h"
42
43 #endif 35 #endif
44 36
45 /* generic implementation */ 37 /* generic implementation */
46 38
47 #ifndef MULL 39 #ifndef MULL