提交 f9841745 编写于 作者: M Matt Oliver

avutil/x86/intmath: Correct intrinsic headers for older compilers.

Signed-off-by: NMatt Oliver <protogonoi@gmail.com>
上级 0cfd4a99
......@@ -22,8 +22,12 @@
#define AVUTIL_X86_INTMATH_H
#include <stdint.h>
#if HAVE_FAST_CLZ && (defined(__INTEL_COMPILER) || defined(_MSC_VER))
#include <immintrin.h>
#if HAVE_FAST_CLZ
#if defined(_MSC_VER)
#include <intrin.h>
#elif defined(__INTEL_COMPILER)
#include <x86intrin.h>
#endif
#endif
#include "config.h"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册