From 794fcf79a89eca2d4e889803b2c804a0b1defbb3 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 6 Jan 2014 14:48:18 +0100 Subject: Rename CONFIG_FFT_FLOAT ---> FFT_FLOAT The define does not originate from configure, so it should not have a name that is CONFIG_-prefixed. --- libavcodec/cos_tablegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/cos_tablegen.c') diff --git a/libavcodec/cos_tablegen.c b/libavcodec/cos_tablegen.c index 9cf9cef6aa..92b8295336 100644 --- a/libavcodec/cos_tablegen.c +++ b/libavcodec/cos_tablegen.c @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) double (*func)(double) = do_sin ? sin : cos; printf("/* This file was automatically generated. */\n"); - printf("#define CONFIG_FFT_FLOAT %d\n", !fixed); + printf("#define FFT_FLOAT %d\n", !fixed); printf("#include \"libavcodec/%s\"\n", do_sin ? "rdft.h" : "fft.h"); for (i = 4; i <= BITS; i++) { int m = 1 << i; -- cgit v1.2.3