summaryrefslogtreecommitdiff
path: root/libavutil/x86/lls_init.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-16 16:42:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-17 16:41:08 +0100
commitc3814ab654a993723b0e5f14cc252d68f233ad79 (patch)
treec099990491a0bd80e0835acaef1e1b384375e5ac /libavutil/x86/lls_init.c
parentbbe66ef912470007f7cc424badde2ccec500b36b (diff)
rename new lls code to lls2 to avoid conflict with the old which has a different ABI
also remove failed attempt at a compatibility layer, the code simply cannot work Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/x86/lls_init.c')
-rw-r--r--libavutil/x86/lls_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/x86/lls_init.c b/libavutil/x86/lls_init.c
index b2424b3645..bf999d5fc3 100644
--- a/libavutil/x86/lls_init.c
+++ b/libavutil/x86/lls_init.c
@@ -23,11 +23,11 @@
#include "libavutil/lls2.h"
#include "libavutil/x86/cpu.h"
-void ff_update_lls_sse2(LLSModel *m, double *var);
-void ff_update_lls_avx(LLSModel *m, double *var);
-double ff_evaluate_lls_sse2(LLSModel *m, double *var, int order);
+void ff_update_lls_sse2(LLSModel2 *m, double *var);
+void ff_update_lls_avx(LLSModel2 *m, double *var);
+double ff_evaluate_lls_sse2(LLSModel2 *m, double *var, int order);
-av_cold void ff_init_lls_x86(LLSModel *m)
+av_cold void ff_init_lls_x86(LLSModel2 *m)
{
int cpu_flags = av_get_cpu_flags();
if (EXTERNAL_SSE2(cpu_flags)) {