diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-07 12:28:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-07 12:28:13 +0000 |
commit | 4802a7a7b1551c6fd898edd6325752aa0ff481a2 (patch) | |
tree | dd1f57dcab9eb754be1bc7e04b48ecfed5bc8bab /libavcodec | |
parent | 176629551635fc74e0cba50e0fbe6ebb9c6a2565 (diff) | |
download | ffmpeg-4802a7a7b1551c6fd898edd6325752aa0ff481a2.tar.gz |
Use MMX only under x86_32, there are compilation problems.
Originally committed as revision 6931 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/liba52/resample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/liba52/resample.c b/libavcodec/liba52/resample.c index 922d109e88..3f06aba1f7 100644 --- a/libavcodec/liba52/resample.c +++ b/libavcodec/liba52/resample.c @@ -33,14 +33,14 @@ int (* a52_resample) (float * _f, int16_t * s16)=NULL; #include "resample_c.c" -#ifdef ARCH_X86 +#ifdef ARCH_X86_32 #include "resample_mmx.c" #endif void* a52_resample_init(uint32_t mm_accel,int flags,int chans){ void* tmp; -#ifdef ARCH_X86 +#ifdef ARCH_X86_32 if(mm_accel&MM_ACCEL_X86_MMX){ tmp=a52_resample_MMX(flags,chans); if(tmp){ |