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.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.h')
-rw-r--r-- | libavcodec/fft.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 87fe704131..1c48145b07 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -26,8 +26,8 @@ #define FFT_FLOAT 1 #endif -#ifndef CONFIG_FFT_FIXED_32 -#define CONFIG_FFT_FIXED_32 0 +#ifndef FFT_FIXED_32 +#define FFT_FIXED_32 0 #endif #include <stdint.h> @@ -44,20 +44,20 @@ typedef float FFTDouble; #else -#if CONFIG_FFT_FIXED_32 +#if FFT_FIXED_32 #define Q31(x) (int)((x)*2147483648.0 + 0.5) #define FFT_NAME(x) x ## _fixed_32 typedef int32_t FFTSample; -#else /* CONFIG_FFT_FIXED_32 */ +#else /* FFT_FIXED_32 */ #define FFT_NAME(x) x ## _fixed typedef int16_t FFTSample; -#endif /* CONFIG_FFT_FIXED_32 */ +#endif /* FFT_FIXED_32 */ typedef struct FFTComplex { FFTSample re, im; |