diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-24 07:06:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-24 07:06:30 +0000 |
commit | 245626d045db09ebceb86c59344eeb1986f79225 (patch) | |
tree | 83d5cea6e49eee5f0beb2be6e978f0c66dac8bfc /libavutil/x86_cpu.h | |
parent | a47ec310f23c3a360e1ab77097bcab84cb6d21b4 (diff) | |
download | ffmpeg-245626d045db09ebceb86c59344eeb1986f79225.tar.gz |
Move ebx_available and ebp_available from CONFIG_LIST to HAVE_LIST,
it's not configurable by the user.
Originally committed as revision 8795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/x86_cpu.h')
-rw-r--r-- | libavutil/x86_cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86_cpu.h b/libavutil/x86_cpu.h index 67d4cd9aa5..ebd60ff7f4 100644 --- a/libavutil/x86_cpu.h +++ b/libavutil/x86_cpu.h @@ -57,7 +57,7 @@ # define REGSP esp #endif -#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && defined(CONFIG_EBX_AVAILABLE) && defined(CONFIG_EBP_AVAILABLE)) +#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && defined(HAVE_EBX_AVAILABLE) && defined(HAVE_EBP_AVAILABLE)) # define CONFIG_7REGS 1 #endif |