[FFmpeg-cvslog] avutil/x86/intmath: Fix intrinsic header include when using newer gcc with older icc.

Matt Oliver git at videolan.org
Thu Nov 12 06:56:00 CET 2015


ffmpeg | branch: master | Matt Oliver <protogonoi at gmail.com> | Thu Nov 12 16:54:08 2015 +1100| [58d32c00beef237ffff56bd61a5fdc99057161a6] | committer: Matt Oliver

avutil/x86/intmath: Fix intrinsic header include when using newer gcc with older icc.

Signed-off-by: Matt Oliver <protogonoi at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=58d32c00beef237ffff56bd61a5fdc99057161a6
---

 libavutil/x86/intmath.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/x86/intmath.h b/libavutil/x86/intmath.h
index b3e5750..611ef88 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"



More information about the ffmpeg-cvslog mailing list