You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
x86/mpegaudiodec: fix compilation failure on cygwin with undefined imdct36_blocks_avx
this is a regression since today Found-by: beastd Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -252,9 +252,12 @@ void ff_mpadsp_init_mmx(MPADSPContext *s)
|
||||
#endif /* HAVE_SSE2_INLINE */
|
||||
|
||||
#if HAVE_YASM
|
||||
#if HAVE_AVX_EXTERNAL
|
||||
if (EXTERNAL_AVX(mm_flags)) {
|
||||
s->imdct36_blocks_float = imdct36_blocks_avx;
|
||||
} else if (EXTERNAL_SSSE3(mm_flags)) {
|
||||
} else
|
||||
#endif
|
||||
if (EXTERNAL_SSSE3(mm_flags)) {
|
||||
s->imdct36_blocks_float = imdct36_blocks_ssse3;
|
||||
} else if (EXTERNAL_SSE3(mm_flags)) {
|
||||
s->imdct36_blocks_float = imdct36_blocks_sse3;
|
||||
|
Reference in New Issue
Block a user