From 794fcf79a89eca2d4e889803b2c804a0b1defbb3 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 6 Jan 2014 14:48:18 +0100 Subject: Rename CONFIG_FFT_FLOAT ---> FFT_FLOAT The define does not originate from configure, so it should not have a name that is CONFIG_-prefixed. --- libavcodec/fft-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/fft-internal.h') diff --git a/libavcodec/fft-internal.h b/libavcodec/fft-internal.h index c312625837..a449ec058a 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 @@ -62,7 +62,7 @@ void ff_mdct_calcw_c(FFTContext *s, FFTDouble *output, const FFTSample *input); #define CMULL(dre, dim, are, aim, bre, bim) \ CMULS(dre, dim, are, aim, bre, bim, 0) -#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) -- cgit v1.2.3