1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

lls.asm: disable ff_update_lls_avx

The code doesnt build with yasm from ubuntu 12.04

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-06-30 11:59:31 +02:00
parent 0b40c50508
commit a285079bc7
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ cglobal update_lls, 2,5,8, ctx, var, i, j, covar2
.ret:
REP_RET
%if HAVE_AVX_EXTERNAL
%if HAVE_AVX_EXTERNAL && 0
INIT_YMM avx
cglobal update_lls, 3,6,8, ctx, var, count, i, j, count2
%define covarq ctxq

View File

@ -32,7 +32,7 @@ av_cold void ff_init_lls_x86(LLSModel *m)
if (EXTERNAL_SSE2(cpu_flags)) {
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;
}
}