diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-06 14:48:18 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-01-06 19:12:48 +0100 |
commit | 794fcf79a89eca2d4e889803b2c804a0b1defbb3 (patch) | |
tree | 7b53b278806f4882ff1d638cd59b2cba6e9477f3 /libavcodec/fft.h | |
parent | 63debaa74c9c159081bb40a9e659806385e1a5fe (diff) | |
download | ffmpeg-794fcf79a89eca2d4e889803b2c804a0b1defbb3.tar.gz |
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/fft.h')
-rw-r--r-- | libavcodec/fft.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index d1425ada62..b15001549d 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -22,15 +22,15 @@ #ifndef AVCODEC_FFT_H #define AVCODEC_FFT_H -#ifndef CONFIG_FFT_FLOAT -#define CONFIG_FFT_FLOAT 1 +#ifndef FFT_FLOAT +#define FFT_FLOAT 1 #endif #include <stdint.h> #include "config.h" #include "libavutil/mem.h" -#if CONFIG_FFT_FLOAT +#if FFT_FLOAT #include "avfft.h" @@ -51,7 +51,7 @@ typedef struct FFTComplex { typedef struct FFTContext FFTContext; -#endif /* CONFIG_FFT_FLOAT */ +#endif /* FFT_FLOAT */ typedef struct FFTDComplex { FFTDouble re, im; |