summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornickols_k <nickols_k@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-02 14:59:33 +0000
committernickols_k <nickols_k@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-02 14:59:33 +0000
commit2c071ee1fff786c2debb9af6de056e965b70573c (patch)
tree41bcc752ac8a955beabcc1887aec1ec2817033b8 /libvo
parent798db8a716a777bc638f56c03d53ce44fa61fa56 (diff)
downloadmpv-2c071ee1fff786c2debb9af6de056e965b70573c.tar.bz2
mpv-2c071ee1fff786c2debb9af6de056e965b70573c.tar.xz
movntq causes SIGILL on k6-3. Lets it be for K7, P3 cpus only
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@689 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/yuv2rgb_mmx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/yuv2rgb_mmx.c b/libvo/yuv2rgb_mmx.c
index b1c39e8ca2..2eaaed4a1a 100644
--- a/libvo/yuv2rgb_mmx.c
+++ b/libvo/yuv2rgb_mmx.c
@@ -53,8 +53,8 @@ uint64_t mmx_grnmask = 0xfcfcfcfcfcfcfcfc;
uint64_t mmx_grnshift = 0x03;
uint64_t mmx_blueshift = 0x03;
-#if defined (HAVE_SSE) || defined (HAVE_3DNOW)
-#define movntq "movntq" // use this for processors that have SSE or 3Dnow
+#ifdef HAVE_MMX2
+#define movntq "movntq" // use this for K7 and p3 only
#else
#define movntq "movq" // for MMX-only processors
#endif