00001 /* Include config options from main configure script. */ 00002 #include "../../config.h" 00003 00004 /* just uses ARCH_X86 */ 00005 #ifdef ARCH_X86_64 00006 #define ARCH_X86 00007 #endif 00008 00009 /* Enable CPU-specific optimizations. */ 00010 #define ACCEL_DETECT 00011 00012 /* The __builtin_expect function is used where available */ 00013 /* (GCC 2.96.x and above). */ 00014 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 95) 00015 #define HAVE_BUILTIN_EXPECT 00016 #endif 00017 00018 /* Translate avcodec's ARCH_POWERPC into mpeg2's ARCH_PPC. */ 00019 #ifdef ARCH_POWERPC 00020 #define ARCH_PPC 00021 #endif 00022 00023 /* Some detection code needs to know the return type of a */ 00024 /* signal handler. */ 00025 #define RETSIGTYPE void 00026 00027 /* Set the maximum alignment for variables. */ 00028 #define ATTRIBUTE_ALIGNED_MAX 64
1.5.5