[SCM] libav/experimental: 10l and better MMX/SSE detection for VIA1000

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:40:59 UTC 2013


The following commit has been merged in the experimental branch:
commit 6206f8c92093044fb298ff19d7192d774d50909e
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Fri Jul 16 01:54:07 2004 +0000

    10l and better MMX/SSE detection for VIA1000
    
    Originally committed as revision 3323 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/i386/cputest.c b/libavcodec/i386/cputest.c
index e4b1b51..34b8131 100644
--- a/libavcodec/i386/cputest.c
+++ b/libavcodec/i386/cputest.c
@@ -92,6 +92,8 @@ int mm_support(void)
 	  rval |= MM_MMX;
 	if( edx & ( 1 << 24) )
 	  rval |= MM_MMXEXT;
+        if(rval==0)
+            goto inteltest;
 	return rval;
     } else if (ebx == 0x69727943 &&
                edx == 0x736e4978 &&
@@ -135,7 +137,7 @@ int main ( void )
 {
   int mm_flags;
   mm_flags = mm_support();
-  printf("mm_support = 0x%08u\n",mm_flags);
+  printf("mm_support = 0x%08X\n",mm_flags);
   return 0;
 }
 #endif

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list