]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/arm/fft_init_arm.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / arm / fft_init_arm.c
index 3e0e41ec3b84570f3ea752d17da8799141404e51..cdb64e74047a89874f19b6e69a7f0221542c9a35 100644 (file)
@@ -42,10 +42,12 @@ av_cold void ff_fft_init_arm(FFTContext *s)
     if (HAVE_NEON) {
         s->fft_permute  = ff_fft_permute_neon;
         s->fft_calc     = ff_fft_calc_neon;
+#if CONFIG_MDCT
         s->imdct_calc   = ff_imdct_calc_neon;
         s->imdct_half   = ff_imdct_half_neon;
         s->mdct_calc    = ff_mdct_calc_neon;
         s->mdct_permutation = FF_MDCT_PERM_INTERLEAVE;
+#endif
     }
 }