0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2281 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-10-19 13:01:31 +00:00
parent 08e3fe558c
commit f8ce675a2f
2 changed files with 5 additions and 3 deletions

View File

@ -91,7 +91,8 @@ void GetCpuCaps( CpuCaps *caps)
return;*/
do_cpuid(0x00000000, regs);
printf("CPU vendor name: %.4s%.4s%.4s\n",&regs[1],&regs[3],&regs[2]);
if (regs[0]>0x00000001) {
// if (regs[0]>0x00000001)
{
do_cpuid(0x00000001, regs2);
printf("CPU family: %d\n",(regs2[0] >> 8)&0xf);
switch ((regs2[0] >> 8)&0xf) {
@ -105,7 +106,7 @@ void GetCpuCaps( CpuCaps *caps)
caps->cpuType=CPUTYPE_I586;
break;
case 6:
caps->cpuType=CPUTYPE_I586;
caps->cpuType=CPUTYPE_I686;
break;
default:
printf("Unknown cpu type, default to i386\n");
@ -292,4 +293,4 @@ static void check_os_katmai_support( void )
gCpuCaps.hasSSE=0;
#endif /* __linux__ */
}
#endif /* ARCH_X86 */
#endif /* ARCH_X86 */

View File

@ -3,6 +3,7 @@
#define CPUTYPE_I386 0
#define CPUTYPE_I486 1
#define CPUTYPE_I586 2
#define CPUTYPE_I686 3
typedef struct cpucaps_s {
int cpuType;