From b5f7e6eb95cb4cdb3204e34b2935d14bac50ab4a Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 13 Aug 2006 08:26:43 +0000 Subject: [PATCH] Clean up:make dsputil subfile names consistent Originally committed as revision 5993 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/Makefile | 4 ++-- libavcodec/ppc/{dsputil_h264_altivec.c => h264_altivec.c} | 4 ++-- .../ppc/{dsputil_h264_template_altivec.c => h264_template_altivec.c} | 0 libavcodec/ppc/{dsputil_snow_altivec.c => snow_altivec.c} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename libavcodec/ppc/{dsputil_h264_altivec.c => h264_altivec.c} (99%) rename libavcodec/ppc/{dsputil_h264_template_altivec.c => h264_template_altivec.c} (100%) rename libavcodec/ppc/{dsputil_snow_altivec.c => snow_altivec.c} (100%) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 38781f7..f1c5c03 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -349,8 +349,8 @@ OBJS-$(TARGET_ALTIVEC) += ppc/dsputil_altivec.o \ ppc/fft_altivec.o \ ppc/gmc_altivec.o \ ppc/fdct_altivec.o \ - ppc/dsputil_h264_altivec.o \ - ppc/dsputil_snow_altivec.o \ + ppc/h264_altivec.o \ + ppc/snow_altivec.o \ ppc/vc1dsp_altivec.o CFLAGS += $(CFLAGS-yes) diff --git a/libavcodec/ppc/dsputil_h264_altivec.c b/libavcodec/ppc/h264_altivec.c similarity index 99% rename from libavcodec/ppc/dsputil_h264_altivec.c rename to libavcodec/ppc/h264_altivec.c index b7d4ec3..87fa6af 100644 --- a/libavcodec/ppc/dsputil_h264_altivec.c +++ b/libavcodec/ppc/h264_altivec.c @@ -34,7 +34,7 @@ #define PREFIX_h264_qpel16_v_lowpass_num altivec_put_h264_qpel16_v_lowpass_num #define PREFIX_h264_qpel16_hv_lowpass_altivec put_h264_qpel16_hv_lowpass_altivec #define PREFIX_h264_qpel16_hv_lowpass_num altivec_put_h264_qpel16_hv_lowpass_num -#include "dsputil_h264_template_altivec.c" +#include "h264_template_altivec.c" #undef OP_U8_ALTIVEC #undef PREFIX_h264_chroma_mc8_altivec #undef PREFIX_h264_chroma_mc8_num @@ -54,7 +54,7 @@ #define PREFIX_h264_qpel16_v_lowpass_num altivec_avg_h264_qpel16_v_lowpass_num #define PREFIX_h264_qpel16_hv_lowpass_altivec avg_h264_qpel16_hv_lowpass_altivec #define PREFIX_h264_qpel16_hv_lowpass_num altivec_avg_h264_qpel16_hv_lowpass_num -#include "dsputil_h264_template_altivec.c" +#include "h264_template_altivec.c" #undef OP_U8_ALTIVEC #undef PREFIX_h264_chroma_mc8_altivec #undef PREFIX_h264_chroma_mc8_num diff --git a/libavcodec/ppc/dsputil_h264_template_altivec.c b/libavcodec/ppc/h264_template_altivec.c similarity index 100% rename from libavcodec/ppc/dsputil_h264_template_altivec.c rename to libavcodec/ppc/h264_template_altivec.c diff --git a/libavcodec/ppc/dsputil_snow_altivec.c b/libavcodec/ppc/snow_altivec.c similarity index 100% rename from libavcodec/ppc/dsputil_snow_altivec.c rename to libavcodec/ppc/snow_altivec.c -- 2.7.4