Mercurial > mplayer.hg
changeset 688:1a016347010a
movntq causes SIGILL on k6-3. Lets it be for K7, P3 cpus only
author | nickols_k |
---|---|
date | Wed, 02 May 2001 14:59:33 +0000 |
parents | bcb46c9eaae1 |
children | b93cc18c3596 |
files | libvo/yuv2rgb_mmx.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/yuv2rgb_mmx.c Wed May 02 14:48:35 2001 +0000 +++ b/libvo/yuv2rgb_mmx.c Wed May 02 14:59:33 2001 +0000 @@ -53,8 +53,8 @@ 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