summaryrefslogtreecommitdiff
path: root/libavcodec/fft-internal.h
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-internal.h
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-internal.h')
-rw-r--r--libavcodec/fft-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/fft-internal.h b/libavcodec/fft-internal.h
index 065eeccef1..afc17db3f5 100644
--- a/libavcodec/fft-internal.h
+++ b/libavcodec/fft-internal.h
@@ -19,7 +19,7 @@
#ifndef AVCODEC_FFT_INTERNAL_H
#define AVCODEC_FFT_INTERNAL_H
-#if CONFIG_FFT_FLOAT
+#if FFT_FLOAT
#define FIX15(v) (v)
#define sqrthalf (float)M_SQRT1_2
@@ -81,7 +81,7 @@ void ff_mdct_calcw_c(FFTContext *s, FFTDouble *output, const FFTSample *input);
#endif /* CONFIG_FFT_FIXED_32 */
-#endif /* CONFIG_FFT_FLOAT */
+#endif /* FFT_FLOAT */
#define ff_imdct_calc_c FFT_NAME(ff_imdct_calc_c)
#define ff_imdct_half_c FFT_NAME(ff_imdct_half_c)