diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:44:16 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:44:16 +0000 |
commit | 89fa3504edbaaacd44eb2c510baca283d1dbbf7b (patch) | |
tree | c6be26622e05bf18d153ce964f9048a3fc4f5910 /libavcodec/x86/Makefile | |
parent | 3a0885146c61d6eff4da4006f6459e720fcf5ccd (diff) | |
download | ffmpeg-89fa3504edbaaacd44eb2c510baca283d1dbbf7b.tar.gz |
Move vp6_filter_diag4() x86 SIMD code from inline ASM to YASM. This should
help in fixing the Win64 fate failures.
Originally committed as revision 24922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 0f0b8a24be..43119fcc6f 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -31,10 +31,9 @@ MMX-OBJS-$(CONFIG_VP3_DECODER) += x86/vp3dsp_mmx.o \ MMX-OBJS-$(CONFIG_VP5_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o \ x86/vp56dsp_init.o +YASM-OBJS-$(CONFIG_VP6_DECODER) += x86/vp56dsp.o MMX-OBJS-$(CONFIG_VP6_DECODER) += x86/vp3dsp_mmx.o \ x86/vp3dsp_sse2.o \ - x86/vp6dsp_mmx.o \ - x86/vp6dsp_sse2.o \ x86/vp56dsp_init.o YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o MMX-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp-init.o |