diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-07 13:04:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-07 13:10:56 +0100 |
commit | 7778979f6f9c863430bbf8335e7a67e875a30513 (patch) | |
tree | 7fa1b50af5095e117b7c60644281522bd0379650 /libavcodec/mdct_template.c | |
parent | 2503928a2f8ba80f3988344faf430d4ad54fbf27 (diff) | |
parent | 794fcf79a89eca2d4e889803b2c804a0b1defbb3 (diff) | |
download | ffmpeg-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/mdct_template.c')
-rw-r--r-- | libavcodec/mdct_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdct_template.c b/libavcodec/mdct_template.c index 922d577e3e..dc74168b48 100644 --- a/libavcodec/mdct_template.c +++ b/libavcodec/mdct_template.c @@ -31,7 +31,7 @@ * MDCT/IMDCT transforms. */ -#if CONFIG_FFT_FLOAT +#if FFT_FLOAT # define RSCALE(x) (x) #else #if CONFIG_FFT_FIXED_32 |