]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/fft.h
x86: h264_qpel: Fix typo in CALL_2X_PIXELS macro invocation
[ffmpeg] / libavcodec / fft.h
index d1425ada62c9a5433911e151649febdfa636528d..b15001549da0a65dd001485512484d41163e6afd 100644 (file)
 #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;