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/mdct_template.c | |
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/mdct_template.c')
-rw-r--r-- | libavcodec/mdct_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mdct_template.c b/libavcodec/mdct_template.c index dc74168b48..a66ac4c47d 100644 --- a/libavcodec/mdct_template.c +++ b/libavcodec/mdct_template.c @@ -34,11 +34,11 @@ #if FFT_FLOAT # define RSCALE(x) (x) #else -#if CONFIG_FFT_FIXED_32 +#if FFT_FIXED_32 # define RSCALE(x) (((x) + 32) >> 6) -#else /* CONFIG_FFT_FIXED_32 */ +#else /* FFT_FIXED_32 */ # define RSCALE(x) ((x) >> 1) -#endif /* CONFIG_FFT_FIXED_32 */ +#endif /* FFT_FIXED_32 */ #endif /** |