From 43da1e78c40ba4f948bfe20536ccc18b2f25c8f7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 29 Jul 2012 17:31:38 +0200 Subject: Rip out 3DNOW support Ancient AMD specific enhancement to the MMX instruction set. Officually discontinued by AMD. Note that support for this was already disabled in the previous commit. This commit removes the actual code. --- libmpcodecs/vf_pp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libmpcodecs/vf_pp.c') diff --git a/libmpcodecs/vf_pp.c b/libmpcodecs/vf_pp.c index 694fa09bf2..ae055f8069 100644 --- a/libmpcodecs/vf_pp.c +++ b/libmpcodecs/vf_pp.c @@ -49,8 +49,7 @@ static int config(struct vf_instance *vf, unsigned int voflags, unsigned int outfmt){ int flags= (gCpuCaps.hasMMX ? PP_CPU_CAPS_MMX : 0) - | (gCpuCaps.hasMMX2 ? PP_CPU_CAPS_MMX2 : 0) - | (gCpuCaps.has3DNow ? PP_CPU_CAPS_3DNOW : 0); + | (gCpuCaps.hasMMX2 ? PP_CPU_CAPS_MMX2 : 0); switch(outfmt){ case IMGFMT_444P: flags|= PP_FORMAT_444; break; -- cgit v1.2.3