summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--dxr3cpu.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index 02e43f9..f141d81 100644
--- a/HISTORY
+++ b/HISTORY
@@ -245,3 +245,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- added descriptions to audio and video output threads
- fixed audio and video thread deletion in demux device destructor
- made "all" the default target in Makefile
+- assume SSE support implies MMXEXT support
diff --git a/dxr3cpu.c b/dxr3cpu.c
index 0164ca8..4cd0a7a 100644
--- a/dxr3cpu.c
+++ b/dxr3cpu.c
@@ -76,6 +76,9 @@ cDxr3CPU::cDxr3CPU()
}
}
+ // MPlayer, Xine-lib, Transcode: SSE implies MMXEXT
+ m_Info.MMXEXT = m_Info.MMXEXT || m_Info.SSE;
+
// fill cabs
if (m_Info.MMX)
{