summaryrefslogtreecommitdiff
path: root/libavutil/x86
diff options
context:
space:
mode:
authorMatt Oliver <protogonoi@gmail.com>2015-11-12 16:54:08 +1100
committerMatt Oliver <protogonoi@gmail.com>2015-11-12 16:54:08 +1100
commit58d32c00beef237ffff56bd61a5fdc99057161a6 (patch)
tree4ab284eb66e9007760a887f3d1206e1cad4646b3 /libavutil/x86
parent9b9c9ef3b42116e7ad2111fc8145f4eca12d657b (diff)
avutil/x86/intmath: Fix intrinsic header include when using newer gcc with older icc.
Signed-off-by: Matt Oliver <protogonoi@gmail.com>
Diffstat (limited to 'libavutil/x86')
-rw-r--r--libavutil/x86/intmath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/intmath.h b/libavutil/x86/intmath.h
index b3e5750ccf..611ef882e9 100644
--- a/libavutil/x86/intmath.h
+++ b/libavutil/x86/intmath.h
@@ -26,7 +26,7 @@
#if defined(_MSC_VER)
#include <intrin.h>
#elif defined(__INTEL_COMPILER)
-#include <x86intrin.h>
+#include <immintrin.h>
#endif
#endif
#include "config.h"