diff options
author | Måns Rullgård <mans@mansr.com> | 2009-05-20 18:49:55 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-05-20 18:49:55 +0000 |
commit | e20a4f53a091ae74e6c9e9a280eefe5c59c7ebe4 (patch) | |
tree | 2d0601c12946cb91e42630f76a3c3f6f83b01196 | |
parent | 26f6a57467c1e0ea96ed577228cdeada0a1f4d44 (diff) | |
download | ffmpeg-e20a4f53a091ae74e6c9e9a280eefe5c59c7ebe4.tar.gz |
mathops: sort arch-specific #include lines
Originally committed as revision 18886 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mathops.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 1a05787806..1477ba652b 100644 --- a/libavcodec/mathops.h +++ b/libavcodec/mathops.h @@ -24,14 +24,14 @@ #include "libavutil/common.h" -#if ARCH_X86 -# include "x86/mathops.h" -#elif ARCH_ARM +#if ARCH_ARM # include "arm/mathops.h" -#elif ARCH_PPC -# include "ppc/mathops.h" #elif ARCH_BFIN # include "bfin/mathops.h" +#elif ARCH_PPC +# include "ppc/mathops.h" +#elif ARCH_X86 +# include "x86/mathops.h" #endif /* generic implementation */ |