summaryrefslogtreecommitdiff
path: root/libavcodec/fft_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-07 13:04:09 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-07 13:10:56 +0100
commit7778979f6f9c863430bbf8335e7a67e875a30513 (patch)
tree7fa1b50af5095e117b7c60644281522bd0379650 /libavcodec/fft_template.c
parent2503928a2f8ba80f3988344faf430d4ad54fbf27 (diff)
parent794fcf79a89eca2d4e889803b2c804a0b1defbb3 (diff)
downloadffmpeg-7778979f6f9c863430bbf8335e7a67e875a30513.tar.gz
Merge commit '794fcf79a89eca2d4e889803b2c804a0b1defbb3'
* commit '794fcf79a89eca2d4e889803b2c804a0b1defbb3': Rename CONFIG_FFT_FLOAT ---> FFT_FLOAT Conflicts: libavcodec/fft-internal.h libavcodec/fft-test.c libavcodec/fft_fixed.c libavcodec/fft_float.c libavcodec/fft_template.c libavcodec/mdct_fixed.c libavcodec/mdct_float.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/fft_template.c')
-rw-r--r--libavcodec/fft_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft_template.c b/libavcodec/fft_template.c
index e0cf1f2982..e6a87ae154 100644
--- a/libavcodec/fft_template.c
+++ b/libavcodec/fft_template.c
@@ -169,7 +169,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
ff_fft_lut_init(fft_offsets_lut, 0, 1 << 16, &n);
}
#else /* CONFIG_FFT_FIXED_32 */
-#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);