diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-06 14:48:18 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-01-06 19:12:48 +0100 |
commit | 794fcf79a89eca2d4e889803b2c804a0b1defbb3 (patch) | |
tree | 7b53b278806f4882ff1d638cd59b2cba6e9477f3 /libavcodec/fft_template.c | |
parent | 63debaa74c9c159081bb40a9e659806385e1a5fe (diff) | |
download | ffmpeg-794fcf79a89eca2d4e889803b2c804a0b1defbb3.tar.gz |
Rename CONFIG_FFT_FLOAT ---> FFT_FLOAT
The define does not originate from configure, so it should not
have a name that is CONFIG_-prefixed.
Diffstat (limited to 'libavcodec/fft_template.c')
-rw-r--r-- | libavcodec/fft_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft_template.c b/libavcodec/fft_template.c index 0b8140a08e..8b94ff1972 100644 --- a/libavcodec/fft_template.c +++ b/libavcodec/fft_template.c @@ -157,7 +157,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse) s->mdct_calc = ff_mdct_calc_c; #endif -#if CONFIG_FFT_FLOAT +#if FFT_FLOAT if (ARCH_ARM) ff_fft_init_arm(s); if (ARCH_PPC) ff_fft_init_ppc(s); if (ARCH_X86) ff_fft_init_x86(s); |