diff options
author | scop <scop> | 2005-03-14 14:15:00 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-14 14:15:00 +0000 |
commit | db9f83438cd5efcd2e79df67b6234fef0d7ab919 (patch) | |
tree | f730550c298f2a5d283b2f6c978f4f705031b58c | |
parent | dd5dbf983a35d62d1fcf1066ce3e5b1725c9333e (diff) | |
download | vdr-plugin-dxr3-db9f83438cd5efcd2e79df67b6234fef0d7ab919.tar.gz vdr-plugin-dxr3-db9f83438cd5efcd2e79df67b6234fef0d7ab919.tar.bz2 |
Assume SSE support implies MMXEXT support.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3cpu.c | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -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 @@ -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) { |