summaryrefslogtreecommitdiff
path: root/libavcodec/mdct_template.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-06 14:48:18 +0100
committerDiego Biurrun <diego@biurrun.de>2014-01-06 19:12:48 +0100
commit794fcf79a89eca2d4e889803b2c804a0b1defbb3 (patch)
tree7b53b278806f4882ff1d638cd59b2cba6e9477f3 /libavcodec/mdct_template.c
parent63debaa74c9c159081bb40a9e659806385e1a5fe (diff)
Rename CONFIG_FFT_FLOAT ---> FFT_FLOAT
The define does not originate from configure, so it should not have a name that is CONFIG_-prefixed.
Diffstat (limited to 'libavcodec/mdct_template.c')
-rw-r--r--libavcodec/mdct_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdct_template.c b/libavcodec/mdct_template.c
index 6f64534273..bad890ef7f 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
# define RSCALE(x) ((x) >> 1)