[FFmpeg-cvslog] x86: avcodec: Appropriately name files containing only init functions
Diego Biurrun
git at videolan.org
Wed Aug 15 16:02:54 CEST 2012
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Aug 11 22:45:53 2012 +0200| [29cfdd37674e3444557c385eaffef06c1b325414] | committer: Diego Biurrun
x86: avcodec: Appropriately name files containing only init functions
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=29cfdd37674e3444557c385eaffef06c1b325414
---
libavcodec/x86/Makefile | 8 ++++----
libavcodec/x86/{ac3dsp_mmx.c => ac3dsp_init.c} | 0
libavcodec/x86/{fft.c => fft_init.c} | 0
libavcodec/x86/{fmtconvert_mmx.c => fmtconvert_init.c} | 0
libavcodec/x86/{h264dsp_mmx.c => h264dsp_init.c} | 0
5 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile
index 57e73d8..4d06685 100644
--- a/libavcodec/x86/Makefile
+++ b/libavcodec/x86/Makefile
@@ -5,7 +5,7 @@ OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
MMX-OBJS += x86/dsputil_mmx.o \
x86/fdct_mmx.o \
- x86/fmtconvert_mmx.o \
+ x86/fmtconvert_init.o \
x86/idct_mmx_xvid.o \
x86/idct_sse2_xvid.o \
x86/motion_est_mmx.o \
@@ -13,13 +13,13 @@ MMX-OBJS += x86/dsputil_mmx.o \
x86/simple_idct_mmx.o \
MMX-OBJS-$(CONFIG_AAC_DECODER) += x86/sbrdsp_init.o
-MMX-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp_mmx.o
+MMX-OBJS-$(CONFIG_AC3DSP) += x86/ac3dsp_init.o
MMX-OBJS-$(CONFIG_CAVS_DECODER) += x86/cavsdsp_mmx.o
MMX-OBJS-$(CONFIG_DNXHD_ENCODER) += x86/dnxhd_mmx.o
MMX-OBJS-$(CONFIG_DWT) += x86/snowdsp_mmx.o
MMX-OBJS-$(CONFIG_ENCODERS) += x86/dsputilenc_mmx.o
-MMX-OBJS-$(CONFIG_FFT) += x86/fft.o
-MMX-OBJS-$(CONFIG_H264DSP) += x86/h264dsp_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
diff --git a/libavcodec/x86/ac3dsp_mmx.c b/libavcodec/x86/ac3dsp_init.c
similarity index 100%
rename from libavcodec/x86/ac3dsp_mmx.c
rename to libavcodec/x86/ac3dsp_init.c
diff --git a/libavcodec/x86/fft.c b/libavcodec/x86/fft_init.c
similarity index 100%
rename from libavcodec/x86/fft.c
rename to libavcodec/x86/fft_init.c
diff --git a/libavcodec/x86/fmtconvert_mmx.c b/libavcodec/x86/fmtconvert_init.c
similarity index 100%
rename from libavcodec/x86/fmtconvert_mmx.c
rename to libavcodec/x86/fmtconvert_init.c
diff --git a/libavcodec/x86/h264dsp_mmx.c b/libavcodec/x86/h264dsp_init.c
similarity index 100%
rename from libavcodec/x86/h264dsp_mmx.c
rename to libavcodec/x86/h264dsp_init.c
More information about the ffmpeg-cvslog
mailing list