Commit f9841745 authored by Matt Oliver's avatar Matt Oliver

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

Signed-off-by: 's avatarMatt Oliver <protogonoi@gmail.com>
parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment