Commit a285079b authored by Michael Niedermayer's avatar Michael Niedermayer

lls.asm: disable ff_update_lls_avx

The code doesnt build with yasm from ubuntu 12.04
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0b40c505
...@@ -125,7 +125,7 @@ cglobal update_lls, 2,5,8, ctx, var, i, j, covar2 ...@@ -125,7 +125,7 @@ cglobal update_lls, 2,5,8, ctx, var, i, j, covar2
.ret: .ret:
REP_RET REP_RET
%if HAVE_AVX_EXTERNAL %if HAVE_AVX_EXTERNAL && 0
INIT_YMM avx INIT_YMM avx
cglobal update_lls, 3,6,8, ctx, var, count, i, j, count2 cglobal update_lls, 3,6,8, ctx, var, count, i, j, count2
%define covarq ctxq %define covarq ctxq
......
...@@ -32,7 +32,7 @@ av_cold void ff_init_lls_x86(LLSModel *m) ...@@ -32,7 +32,7 @@ av_cold void ff_init_lls_x86(LLSModel *m)
if (EXTERNAL_SSE2(cpu_flags)) { if (EXTERNAL_SSE2(cpu_flags)) {
m->update_lls = ff_update_lls_sse2; m->update_lls = ff_update_lls_sse2;
} }
if (EXTERNAL_AVX(cpu_flags)) { if (EXTERNAL_AVX(cpu_flags) && 0) {
m->update_lls = ff_update_lls_avx; m->update_lls = ff_update_lls_avx;
} }
} }
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