diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-06-30 11:59:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-30 12:12:11 +0200 |
commit | a285079bc75a6e3b9aa27910351044b79bc0c490 (patch) | |
tree | 37c85c48b261c51229d7ed51cf23e7f854451c01 /libavutil/x86/lls_init.c | |
parent | 0b40c505087ff238becd297c890fb12fbc0d99a5 (diff) | |
download | ffmpeg-a285079bc75a6e3b9aa27910351044b79bc0c490.tar.gz |
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>
Diffstat (limited to 'libavutil/x86/lls_init.c')
-rw-r--r-- | libavutil/x86/lls_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/lls_init.c b/libavutil/x86/lls_init.c index 6437be958c..0c7b75d07c 100644 --- a/libavutil/x86/lls_init.c +++ b/libavutil/x86/lls_init.c @@ -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; } } |