From ac0e03bab00182f845cd02d458f404ee30ef0998 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Tue, 19 Nov 2013 21:17:53 +0100
Subject: [PATCH] dct/fft: Give consistent names to fixed/float template files

---
 libavcodec/dct32_fixed.c                 | 2 +-
 libavcodec/dct32_float.c                 | 2 +-
 libavcodec/{dct32.c => dct32_template.c} | 0
 libavcodec/fft_fixed.c                   | 2 +-
 libavcodec/fft_float.c                   | 2 +-
 libavcodec/{fft.c => fft_template.c}     | 0
 libavcodec/mdct_fixed.c                  | 2 +-
 libavcodec/mdct_float.c                  | 2 +-
 libavcodec/{mdct.c => mdct_template.c}   | 0
 9 files changed, 6 insertions(+), 6 deletions(-)
 rename libavcodec/{dct32.c => dct32_template.c} (100%)
 rename libavcodec/{fft.c => fft_template.c} (100%)
 rename libavcodec/{mdct.c => mdct_template.c} (100%)

diff --git a/libavcodec/dct32_fixed.c b/libavcodec/dct32_fixed.c
index 7eb9dc1a532..64efe8bf7a3 100644
--- a/libavcodec/dct32_fixed.c
+++ b/libavcodec/dct32_fixed.c
@@ -17,4 +17,4 @@
  */
 
 #define DCT32_FLOAT 0
-#include "dct32.c"
+#include "dct32_template.c"
diff --git a/libavcodec/dct32_float.c b/libavcodec/dct32_float.c
index 727ec3caca1..ef37ce9687e 100644
--- a/libavcodec/dct32_float.c
+++ b/libavcodec/dct32_float.c
@@ -17,4 +17,4 @@
  */
 
 #define DCT32_FLOAT 1
-#include "dct32.c"
+#include "dct32_template.c"
diff --git a/libavcodec/dct32.c b/libavcodec/dct32_template.c
similarity index 100%
rename from libavcodec/dct32.c
rename to libavcodec/dct32_template.c
diff --git a/libavcodec/fft_fixed.c b/libavcodec/fft_fixed.c
index b28091d35c2..91dc69d8c6e 100644
--- a/libavcodec/fft_fixed.c
+++ b/libavcodec/fft_fixed.c
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 0
-#include "fft.c"
+#include "fft_template.c"
diff --git a/libavcodec/fft_float.c b/libavcodec/fft_float.c
index 24c9fdb3668..213da9fc849 100644
--- a/libavcodec/fft_float.c
+++ b/libavcodec/fft_float.c
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 1
-#include "fft.c"
+#include "fft_template.c"
diff --git a/libavcodec/fft.c b/libavcodec/fft_template.c
similarity index 100%
rename from libavcodec/fft.c
rename to libavcodec/fft_template.c
diff --git a/libavcodec/mdct_fixed.c b/libavcodec/mdct_fixed.c
index 94527f9e856..15dfcd4cecf 100644
--- a/libavcodec/mdct_fixed.c
+++ b/libavcodec/mdct_fixed.c
@@ -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)
diff --git a/libavcodec/mdct_float.c b/libavcodec/mdct_float.c
index e4f5549cb7f..f8955f6251a 100644
--- a/libavcodec/mdct_float.c
+++ b/libavcodec/mdct_float.c
@@ -17,4 +17,4 @@
  */
 
 #define CONFIG_FFT_FLOAT 1
-#include "mdct.c"
+#include "mdct_template.c"
diff --git a/libavcodec/mdct.c b/libavcodec/mdct_template.c
similarity index 100%
rename from libavcodec/mdct.c
rename to libavcodec/mdct_template.c
-- 
GitLab