changeset 11122:e45c852b6820 libavcodec

Fix build with --disable-mdct
author mru
date Thu, 11 Feb 2010 23:40:45 +0000
parents 1d4aeef800d4
children d59349627f52
files fft.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/fft.c	Thu Feb 11 07:59:24 2010 +0000
+++ b/fft.c	Thu Feb 11 23:40:45 2010 +0000
@@ -99,9 +99,11 @@
 
     s->fft_permute = ff_fft_permute_c;
     s->fft_calc    = ff_fft_calc_c;
+#if CONFIG_MDCT
     s->imdct_calc  = ff_imdct_calc_c;
     s->imdct_half  = ff_imdct_half_c;
     s->mdct_calc   = ff_mdct_calc_c;
+#endif
     s->exptab1     = NULL;
     s->split_radix = 1;