1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avutil/x86: reenable ff_update_lls_avx()

The bug has been fixed in c8b920a9b7 by Loren Merritt

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2013-07-02 11:58:08 +02:00
parent 951a365504
commit a478e99a60
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: .ret:
REP_RET REP_RET
%if HAVE_AVX_EXTERNAL && 0 %if HAVE_AVX_EXTERNAL
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

View File

@@ -35,7 +35,7 @@ av_cold void ff_init_lls_x86(LLSModel *m)
if (m->indep_count >= 4) if (m->indep_count >= 4)
m->evaluate_lls = ff_evaluate_lls_sse2; m->evaluate_lls = ff_evaluate_lls_sse2;
} }
if (EXTERNAL_AVX(cpu_flags) && 0) { if (EXTERNAL_AVX(cpu_flags)) {
m->update_lls = ff_update_lls_avx; m->update_lls = ff_update_lls_avx;
} }
} }