summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-08 02:12:17 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-28 18:37:34 +0200
commitbcc45d6348174241e1ec7ce9f8129bebbde4bde6 (patch)
tree1ddce6bea6178e6301209f2fa909e1ef4c61be5b
parentefbd04c332e90e26fa756309f5c2acfcaf3bc50b (diff)
x86: avcodec: Drop silly "_mmx" suffixes from filenames
-rw-r--r--libavcodec/x86/Makefile16
-rw-r--r--libavcodec/x86/cavsdsp.c (renamed from libavcodec/x86/cavsdsp_mmx.c)0
-rw-r--r--libavcodec/x86/dsputil_mmx.c2
-rw-r--r--libavcodec/x86/fdct.c (renamed from libavcodec/x86/fdct_mmx.c)0
-rw-r--r--libavcodec/x86/fft.asm (renamed from libavcodec/x86/fft_mmx.asm)0
-rw-r--r--libavcodec/x86/h264_qpel.c (renamed from libavcodec/x86/h264_qpel_mmx.c)0
-rw-r--r--libavcodec/x86/lpc.c (renamed from libavcodec/x86/lpc_mmx.c)0
-rw-r--r--libavcodec/x86/motion_est.c (renamed from libavcodec/x86/motion_est_mmx.c)0
-rw-r--r--libavcodec/x86/mpegaudiodec.c (renamed from libavcodec/x86/mpegaudiodec_mmx.c)0
-rw-r--r--libavcodec/x86/simple_idct.c (renamed from libavcodec/x86/simple_idct_mmx.c)0
-rw-r--r--libavcodec/x86/snowdsp.c (renamed from libavcodec/x86/snowdsp_mmx.c)0
11 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile
index 8582e9ceae..43e1a3afb4 100644
--- a/libavcodec/x86/Makefile
+++ b/libavcodec/x86/Makefile
@@ -4,24 +4,24 @@ OBJS-$(CONFIG_VP3DSP) += x86/vp3dsp_init.o
OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
MMX-OBJS += x86/dsputil_mmx.o \
- x86/fdct_mmx.o \
+ x86/fdct.o \
x86/fmtconvert_init.o \
x86/idct_mmx_xvid.o \
x86/idct_sse2_xvid.o \
- x86/motion_est_mmx.o \
- x86/simple_idct_mmx.o \
+ x86/motion_est.o \
+ x86/simple_idct.o \
MMX-OBJS-$(CONFIG_AAC_DECODER) += x86/sbrdsp_init.o
MMX-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp_init.o
-MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp_mmx.o
+MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp.o
MMX-OBJS-$(CONFIG_DNXHD_ENCODER) += x86/dnxhdenc.o
-MMX-OBJS-$(CONFIG_DWT) += x86/snowdsp_mmx.o
+MMX-OBJS-$(CONFIG_DWT) += x86/snowdsp.o
MMX-OBJS-$(CONFIG_ENCODERS) += x86/dsputilenc_mmx.o
MMX-OBJS-$(CONFIG_FFT) += x86/fft_init.o
MMX-OBJS-$(CONFIG_H264DSP) += x86/h264dsp_init.o
MMX-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred_init.o
-MMX-OBJS-$(CONFIG_LPC) += x86/lpc_mmx.o
-MMX-OBJS-$(CONFIG_MPEGAUDIODSP) += x86/mpegaudiodec_mmx.o
+MMX-OBJS-$(CONFIG_LPC) += x86/lpc.o
+MMX-OBJS-$(CONFIG_MPEGAUDIODSP) += x86/mpegaudiodec.o
MMX-OBJS-$(CONFIG_MPEGVIDEO) += x86/mpegvideo.o
MMX-OBJS-$(CONFIG_MPEGVIDEOENC) += x86/mpegvideoenc.o
MMX-OBJS-$(CONFIG_PNG_DECODER) += x86/pngdsp_init.o
@@ -38,7 +38,7 @@ YASM-OBJS-$(CONFIG_AAC_DECODER) += x86/sbrdsp.o
YASM-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp.o
YASM-OBJS-$(CONFIG_DCT) += x86/dct32.o
YASM-OBJS-$(CONFIG_ENCODERS) += x86/dsputilenc.o
-YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o
+YASM-OBJS-$(CONFIG_FFT) += x86/fft.o
YASM-OBJS-$(CONFIG_H264CHROMA) += x86/h264_chromamc.o \
x86/h264_chromamc_10bit.o
YASM-OBJS-$(CONFIG_H264DSP) += x86/h264_deblock.o \
diff --git a/libavcodec/x86/cavsdsp_mmx.c b/libavcodec/x86/cavsdsp.c
index e94003956f..e94003956f 100644
--- a/libavcodec/x86/cavsdsp_mmx.c
+++ b/libavcodec/x86/cavsdsp.c
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c
index 93f9db8299..c1f54ac64f 100644
--- a/libavcodec/x86/dsputil_mmx.c
+++ b/libavcodec/x86/dsputil_mmx.c
@@ -2081,7 +2081,7 @@ PREFETCH(prefetch_3dnow, prefetch)
#endif /* HAVE_INLINE_ASM */
-#include "h264_qpel_mmx.c"
+#include "h264_qpel.c"
void ff_put_h264_chroma_mc8_mmx_rnd (uint8_t *dst, uint8_t *src,
int stride, int h, int x, int y);
diff --git a/libavcodec/x86/fdct_mmx.c b/libavcodec/x86/fdct.c
index f9bd3f2508..f9bd3f2508 100644
--- a/libavcodec/x86/fdct_mmx.c
+++ b/libavcodec/x86/fdct.c
diff --git a/libavcodec/x86/fft_mmx.asm b/libavcodec/x86/fft.asm
index 645253cbd3..645253cbd3 100644
--- a/libavcodec/x86/fft_mmx.asm
+++ b/libavcodec/x86/fft.asm
diff --git a/libavcodec/x86/h264_qpel_mmx.c b/libavcodec/x86/h264_qpel.c
index fc1635de8b..fc1635de8b 100644
--- a/libavcodec/x86/h264_qpel_mmx.c
+++ b/libavcodec/x86/h264_qpel.c
diff --git a/libavcodec/x86/lpc_mmx.c b/libavcodec/x86/lpc.c
index 82f77612f2..82f77612f2 100644
--- a/libavcodec/x86/lpc_mmx.c
+++ b/libavcodec/x86/lpc.c
diff --git a/libavcodec/x86/motion_est_mmx.c b/libavcodec/x86/motion_est.c
index 6eb44d4b2d..6eb44d4b2d 100644
--- a/libavcodec/x86/motion_est_mmx.c
+++ b/libavcodec/x86/motion_est.c
diff --git a/libavcodec/x86/mpegaudiodec_mmx.c b/libavcodec/x86/mpegaudiodec.c
index 701ae75138..701ae75138 100644
--- a/libavcodec/x86/mpegaudiodec_mmx.c
+++ b/libavcodec/x86/mpegaudiodec.c
diff --git a/libavcodec/x86/simple_idct_mmx.c b/libavcodec/x86/simple_idct.c
index 0e809337d3..0e809337d3 100644
--- a/libavcodec/x86/simple_idct_mmx.c
+++ b/libavcodec/x86/simple_idct.c
diff --git a/libavcodec/x86/snowdsp_mmx.c b/libavcodec/x86/snowdsp.c
index fb190d8d8d..fb190d8d8d 100644
--- a/libavcodec/x86/snowdsp_mmx.c
+++ b/libavcodec/x86/snowdsp.c