1
0
Fork 0

hevc: disable intrapred intrinsics on msvc

Those two don't like each other very much.
This commit is contained in:
Hendrik Leppkes 2016-02-12 00:04:19 +01:00
parent 397cab1f49
commit 50d4f8ccfb
Signed by: hendrik
GPG Key ID: 846079A4B0A7C1B5
1 changed files with 2 additions and 0 deletions

View File

@ -1294,6 +1294,7 @@ void ff_hevc_pred_init_x86(HEVCPredContext *hpc, int bit_depth)
{
int mm_flags = av_get_cpu_flags();
#ifndef _MSC_VER
if (bit_depth == 8) {
if (EXTERNAL_SSE4(mm_flags)) {
HEVC_PRED(8);
@ -1304,4 +1305,5 @@ void ff_hevc_pred_init_x86(HEVCPredContext *hpc, int bit_depth)
HEVC_PRED(10);
}
}
#endif
}