Commit e8b891b7 authored by Michael Niedermayer's avatar Michael Niedermayer

dirac: enable diracdsp_mmx

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3cb0686e
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "dsputil.h" #include "dsputil.h"
#include "diracdsp.h" #include "diracdsp.h"
/* MMX_DISABLE #include "libavcodec/x86/diracdsp_mmx.h" */ #include "libavcodec/x86/diracdsp_mmx.h"
#define FILTER(src, stride) \ #define FILTER(src, stride) \
((21*((src)[ 0*stride] + (src)[1*stride]) \ ((21*((src)[ 0*stride] + (src)[1*stride]) \
...@@ -197,5 +197,5 @@ void ff_diracdsp_init(DiracDSPContext *c) ...@@ -197,5 +197,5 @@ void ff_diracdsp_init(DiracDSPContext *c)
PIXFUNC(avg, 16); PIXFUNC(avg, 16);
PIXFUNC(avg, 32); PIXFUNC(avg, 32);
/* MMX_DISABLE if (HAVE_MMX) ff_diracdsp_init_mmx(c); */ if (HAVE_MMX) ff_diracdsp_init_mmx(c);
} }
...@@ -27,7 +27,7 @@ MMX-OBJS-$(CONFIG_RV40_DECODER) += x86/rv40dsp.o \ ...@@ -27,7 +27,7 @@ MMX-OBJS-$(CONFIG_RV40_DECODER) += x86/rv40dsp.o \
YASM-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_yasm.o YASM-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_yasm.o
#DISABLE_MMX YASM-OBJS-$(CONFIG_DIRAC_DECODER) += x86/diracdsp_mmx.o x86/diracdsp_yasm.o YASM-OBJS-$(CONFIG_DIRAC_DECODER) += x86/diracdsp_mmx.o x86/diracdsp_yasm.o
MMX-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp_mmx.o MMX-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp_mmx.o
YASM-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp.o YASM-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp.o
......
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