mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-29 20:36:47 +08:00
Use MMX only under x86_32, there are compilation problems.
Originally committed as revision 6931 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -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){
|
||||
|
Reference in New Issue
Block a user