mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Revert "avutil/x86: disable ff_evaluate_lls_sse2() for 32bit"
This reverts commit 247425241c
.
This commit is contained in:
parent
4e488ac5f5
commit
a6e46ed51a
@ -32,7 +32,7 @@ av_cold void ff_init_lls_x86(LLSModel *m)
|
||||
int cpu_flags = av_get_cpu_flags();
|
||||
if (EXTERNAL_SSE2(cpu_flags)) {
|
||||
m->update_lls = ff_update_lls_sse2;
|
||||
if (m->indep_count >= 4 && ARCH_X86_64)
|
||||
if (m->indep_count >= 4)
|
||||
m->evaluate_lls = ff_evaluate_lls_sse2;
|
||||
}
|
||||
if (EXTERNAL_AVX(cpu_flags) && 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user