diff options
author | multiple authors <multiple@multiple.x> | 2013-02-05 12:54:15 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-05 12:55:10 +0100 |
commit | a54737f7ead000c6e7f97e176652724437ba8aa1 (patch) | |
tree | 271eb93decac61149b9b39e7e42f7d95cbae52e3 /libavfilter | |
parent | 0b6f34cc9f281725fe7aeb011add88e896a2ec81 (diff) | |
download | ffmpeg-streaming-a54737f7ead000c6e7f97e176652724437ba8aa1.zip ffmpeg-streaming-a54737f7ead000c6e7f97e176652724437ba8aa1.tar.gz |
libmpcodecs/cpudetect: update to latest from mplayer
Please see mplayer svn for authorship and individual commits
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/libmpcodecs/cpudetect.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/libmpcodecs/cpudetect.h b/libavfilter/libmpcodecs/cpudetect.h index c0bb7b7..710f6e6 100644 --- a/libavfilter/libmpcodecs/cpudetect.h +++ b/libavfilter/libmpcodecs/cpudetect.h @@ -19,8 +19,6 @@ #ifndef MPLAYER_CPUDETECT_H #define MPLAYER_CPUDETECT_H -//#include "config.h" - #define CPUTYPE_I386 3 #define CPUTYPE_I486 4 #define CPUTYPE_I586 5 @@ -40,7 +38,10 @@ typedef struct cpucaps_s { int hasSSE2; int hasSSE3; int hasSSSE3; + int hasSSE4; + int hasSSE42; int hasSSE4a; + int hasAVX; int isX86; unsigned cl_size; /* size of cache line */ int hasAltiVec; |