Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
d5bcef52
Commit
d5bcef52
authored
May 27, 2014
by
Jingning Han
Committed by
Gerrit Code Review
May 27, 2014
Browse files
Merge "Fix compiling error in MSVS"
parents
32228ac1
239e68dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/x86/vp9_idct_intrin_ssse3.c
View file @
d5bcef52
...
...
@@ -8,6 +8,11 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#if defined(_MSC_VER) && _MSC_VER <= 1500
// Need to include math.h before calling tmmintrin.h/intrin.h
// in certain versions of MSVS.
#include <math.h>
#endif
#include <tmmintrin.h> // SSSE3
#include "vp9/common/x86/vp9_idct_intrin_sse2.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment