changeset 2377:9214c91cdfb7 libavcodec

detect sse on athlon-xp patch by (matthieu castet <castet >.< matthieu >at< free >.< fr>)
author michael
date Sun, 05 Dec 2004 23:26:43 +0000
parents ed9bb4a45afa
children 1f56314b3770
files i386/cputest.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/i386/cputest.c	Sun Dec 05 23:21:39 2004 +0000
+++ b/i386/cputest.c	Sun Dec 05 23:26:43 2004 +0000
@@ -25,7 +25,7 @@
 /* Function to test if multimedia instructions are supported...  */
 int mm_support(void)
 {
-    int rval;
+    int rval = 0;
     int eax, ebx, ecx, edx;
     long a, c;
     
@@ -64,7 +64,7 @@
         cpuid(1, eax, ebx, ecx, edx);
         if ((edx & 0x00800000) == 0)
             return 0;
-        rval = MM_MMX;
+        rval |= MM_MMX;
         if (edx & 0x02000000) 
             rval |= MM_MMXEXT | MM_SSE;
         if (edx & 0x04000000) 
@@ -85,7 +85,7 @@
             rval |= MM_3DNOW;
         if (edx & 0x00400000)
             rval |= MM_MMXEXT;
-        return rval;
+        goto inteltest;
     } else if (ebx == 0x746e6543 &&
                edx == 0x48727561 &&
                ecx == 0x736c7561) {  /*  "CentaurHauls" */