diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-07 13:05:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-07 13:11:06 +0100 |
commit | 99b6357f37b733cc2b6a7604efaaa5803be04017 (patch) | |
tree | 1dbe65bb7348081243e2c1852d5c835c8e2054ee /libavcodec/fft-internal.h | |
parent | 7778979f6f9c863430bbf8335e7a67e875a30513 (diff) | |
download | ffmpeg-99b6357f37b733cc2b6a7604efaaa5803be04017.tar.gz |
rename CONFIG_FFT_FIXED_32 -> FFT_FIXED_32
This matches FFT_FLOAT
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/fft-internal.h')
-rw-r--r-- | libavcodec/fft-internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/fft-internal.h b/libavcodec/fft-internal.h index afc17db3f5..0a8f7d05cf 100644 --- a/libavcodec/fft-internal.h +++ b/libavcodec/fft-internal.h @@ -38,7 +38,7 @@ #define SCALE_FLOAT(a, bits) lrint((a) * (double)(1 << (bits))) -#if CONFIG_FFT_FIXED_32 +#if FFT_FIXED_32 #define CMUL(dre, dim, are, aim, bre, bim) do { \ int64_t accu; \ @@ -52,7 +52,7 @@ #define FIX15(a) av_clip(SCALE_FLOAT(a, 31), -2147483647, 2147483647) -#else /* CONFIG_FFT_FIXED_32 */ +#else /* FFT_FIXED_32 */ #include "fft.h" #include "mathops.h" @@ -79,7 +79,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_FIXED_32 */ +#endif /* FFT_FIXED_32 */ #endif /* FFT_FLOAT */ |