dct/fft: Give consistent names to fixed/float template files
authorDiego Biurrun <diego@biurrun.de>
Tue, 19 Nov 2013 20:17:53 +0000 (21:17 +0100)
committerDiego Biurrun <diego@biurrun.de>
Thu, 21 Nov 2013 14:59:46 +0000 (15:59 +0100)
libavcodec/dct32_fixed.c
libavcodec/dct32_float.c
libavcodec/dct32_template.c [moved from libavcodec/dct32.c with 100% similarity]
libavcodec/fft_fixed.c
libavcodec/fft_float.c
libavcodec/fft_template.c [moved from libavcodec/fft.c with 100% similarity]
libavcodec/mdct_fixed.c
libavcodec/mdct_float.c
libavcodec/mdct_template.c [moved from libavcodec/mdct.c with 100% similarity]

index 7eb9dc1..64efe8b 100644 (file)
@@ -17,4 +17,4 @@
  */
 
 #define DCT32_FLOAT 0
-#include "dct32.c"
+#include "dct32_template.c"
index 727ec3c..ef37ce9 100644 (file)
@@ -17,4 +17,4 @@
  */
 
 #define DCT32_FLOAT 1
-#include "dct32.c"
+#include "dct32_template.c"
index b28091d..91dc69d 100644 (file)
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 0
-#include "fft.c"
+#include "fft_template.c"
index 24c9fdb..213da9f 100644 (file)
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 1
-#include "fft.c"
+#include "fft_template.c"
similarity index 100%
rename from libavcodec/fft.c
rename to libavcodec/fft_template.c
index 94527f9..15dfcd4 100644 (file)
@@ -17,7 +17,7 @@
  */
 
 #define CONFIG_FFT_FLOAT 0
-#include "mdct.c"
+#include "mdct_template.c"
 
 /* same as ff_mdct_calcw_c with double-width unscaled output */
 void ff_mdct_calcw_c(FFTContext *s, FFTDouble *out, const FFTSample *input)
index e4f5549..f8955f6 100644 (file)
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 1
-#include "mdct.c"
+#include "mdct_template.c"
similarity index 100%
rename from libavcodec/mdct.c
rename to libavcodec/mdct_template.c