Commit 4c99f2cd authored by Michael Niedermayer's avatar Michael Niedermayer

transmeta crusoe mmx detection by "Nobody/Anonymous - nobody" / sf feature request tracker

Originally committed as revision 3248 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 504c8380
......@@ -114,6 +114,17 @@ int mm_support(void)
if (eax & 0x01000000)
rval |= MM_MMXEXT;
return rval;
} else if (ebx == 0x756e6547 &&
edx == 0x54656e69 &&
ecx == 0x3638784d) {
/* Tranmeta Crusoe */
cpuid(0x80000000, eax, ebx, ecx, edx);
if ((unsigned)eax < 0x80000001)
return 0;
cpuid(0x80000001, eax, ebx, ecx, edx);
if ((edx & 0x00800000) == 0)
return 0;
return MM_MMX;
} else {
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment