summaryrefslogtreecommitdiffstats
path: root/cpudetect.h
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-19 16:41:59 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-19 16:41:59 +0000
commit928e4433aa62badaa8578cf8247ea0cbf06e3204 (patch)
treeb07dbc84141a06ae3a7362bb956567630f0d6406 /cpudetect.h
parent82e0e9055aa932e9e11fccc1ef51bf24efac2eb9 (diff)
downloadmpv-928e4433aa62badaa8578cf8247ea0cbf06e3204.tar.bz2
mpv-928e4433aa62badaa8578cf8247ea0cbf06e3204.tar.xz
Add detection of x86 CPU features SSSE3 and SSE4a.
Patch by Zhou, Zongyi %zz65 A cornell P edu% Original thread: date: Wed, Nov 19, 2008 at 4:22 PM subject: Re: [MPlayer-dev-eng] [PATCH] yadif SSE2/SSSE3 optimization git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27960 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.h')
-rw-r--r--cpudetect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpudetect.h b/cpudetect.h
index 6c48da0bef..a98f97f0e4 100644
--- a/cpudetect.h
+++ b/cpudetect.h
@@ -44,6 +44,8 @@ typedef struct cpucaps_s {
int has3DNowExt;
int hasSSE;
int hasSSE2;
+ int hasSSSE3;
+ int hasSSE4a;
int isX86;
unsigned cl_size; /* size of cache line */
int hasAltiVec;