Commit efac6f74 authored by Michael Niedermayer's avatar Michael Niedermayer

x86/mpegaudiodec: drop likely now unneeded #if HAVE_AVX_EXTERNAL

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c0dfc720
...@@ -257,12 +257,9 @@ void ff_mpadsp_init_mmx(MPADSPContext *s) ...@@ -257,12 +257,9 @@ void ff_mpadsp_init_mmx(MPADSPContext *s)
#endif /* HAVE_SSE2_INLINE */ #endif /* HAVE_SSE2_INLINE */
#if HAVE_YASM #if HAVE_YASM
#if HAVE_AVX_EXTERNAL
if (EXTERNAL_AVX(mm_flags)) { if (EXTERNAL_AVX(mm_flags)) {
s->imdct36_blocks_float = imdct36_blocks_avx; s->imdct36_blocks_float = imdct36_blocks_avx;
} else } else if (EXTERNAL_SSSE3(mm_flags)) {
#endif
if (EXTERNAL_SSSE3(mm_flags)) {
s->imdct36_blocks_float = imdct36_blocks_ssse3; s->imdct36_blocks_float = imdct36_blocks_ssse3;
} else if (EXTERNAL_SSE3(mm_flags)) { } else if (EXTERNAL_SSE3(mm_flags)) {
s->imdct36_blocks_float = imdct36_blocks_sse3; s->imdct36_blocks_float = imdct36_blocks_sse3;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment