Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-06 17:48:18 +0400
committerDiego Biurrun <diego@biurrun.de>2014-01-06 22:12:48 +0400
commit794fcf79a89eca2d4e889803b2c804a0b1defbb3 (patch)
tree7b53b278806f4882ff1d638cd59b2cba6e9477f3 /libavcodec/cos_tablegen.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/cos_tablegen.c')
-rw-r--r--libavcodec/cos_tablegen.c2
1 files changed, 1 insertions, 1 deletions
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;