diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-19 21:17:53 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-21 15:59:46 +0100 |
commit | ac0e03bab00182f845cd02d458f404ee30ef0998 (patch) | |
tree | 69847f0d4da9e3d8f4edc74a86a76ae08a97e509 | |
parent | dd249245d012c1eceb57c166e256fc95e74f4bb1 (diff) | |
download | ffmpeg-ac0e03bab00182f845cd02d458f404ee30ef0998.tar.gz |
dct/fft: Give consistent names to fixed/float template files
-rw-r--r-- | libavcodec/dct32_fixed.c | 2 | ||||
-rw-r--r-- | libavcodec/dct32_float.c | 2 | ||||
-rw-r--r-- | libavcodec/dct32_template.c (renamed from libavcodec/dct32.c) | 0 | ||||
-rw-r--r-- | libavcodec/fft_fixed.c | 2 | ||||
-rw-r--r-- | libavcodec/fft_float.c | 2 | ||||
-rw-r--r-- | libavcodec/fft_template.c (renamed from libavcodec/fft.c) | 0 | ||||
-rw-r--r-- | libavcodec/mdct_fixed.c | 2 | ||||
-rw-r--r-- | libavcodec/mdct_float.c | 2 | ||||
-rw-r--r-- | libavcodec/mdct_template.c (renamed from libavcodec/mdct.c) | 0 |
9 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/dct32_fixed.c b/libavcodec/dct32_fixed.c index 7eb9dc1a53..64efe8bf7a 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 727ec3caca..ef37ce9687 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 index 272e0dbf95..272e0dbf95 100644 --- a/libavcodec/dct32.c +++ b/libavcodec/dct32_template.c diff --git a/libavcodec/fft_fixed.c b/libavcodec/fft_fixed.c index b28091d35c..91dc69d8c6 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 24c9fdb366..213da9fc84 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 index 0b8140a08e..0b8140a08e 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft_template.c diff --git a/libavcodec/mdct_fixed.c b/libavcodec/mdct_fixed.c index 94527f9e85..15dfcd4cec 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 e4f5549cb7..f8955f6251 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 index 6f64534273..6f64534273 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct_template.c |