Commit 4802a7a7 authored by Diego Biurrun's avatar Diego Biurrun

Use MMX only under x86_32, there are compilation problems.

Originally committed as revision 6931 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 17662955
......@@ -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){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment