From a441a2437bc2663b05513bb223a8dfd08721a9ee Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 1 Jul 2014 18:10:15 -0300 Subject: [PATCH] x86: rename dsputil.asm to idctdsp.asm Its only function is no longer part of dsputil. Signed-off-by: James Almer Signed-off-by: Michael Niedermayer --- libavcodec/x86/Makefile | 2 +- libavcodec/x86/{dsputil.asm => idctdsp.asm} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libavcodec/x86/{dsputil.asm => idctdsp.asm} (98%) diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 4367d90dc4..f43d54657c 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -81,7 +81,6 @@ YASM-OBJS-$(CONFIG_DCT) += x86/dct32.o YASM-OBJS-$(CONFIG_DIRAC_DECODER) += x86/diracdsp_mmx.o x86/diracdsp_yasm.o\ x86/dwt_yasm.o YASM-OBJS-$(CONFIG_DNXHD_ENCODER) += x86/dnxhdenc.o -YASM-OBJS-$(CONFIG_DSPUTIL) += x86/dsputil.o YASM-OBJS-$(CONFIG_ENCODERS) += x86/dsputilenc.o YASM-OBJS-$(CONFIG_FFT) += x86/fft.o YASM-OBJS-$(CONFIG_FLAC_DECODER) += x86/flacdsp.o @@ -106,6 +105,7 @@ YASM-OBJS-$(CONFIG_HEVC_DECODER) += x86/hevc_mc.o \ YASM-OBJS-$(CONFIG_HPELDSP) += x86/fpel.o \ x86/hpeldsp.o YASM-OBJS-$(CONFIG_HUFFYUVDSP) += x86/huffyuvdsp.o +YASM-OBJS-$(CONFIG_IDCTDSP) += x86/idctdsp.o YASM-OBJS-$(CONFIG_LLAUDDSP) += x86/lossless_audiodsp.o YASM-OBJS-$(CONFIG_LLVIDDSP) += x86/lossless_videodsp.o YASM-OBJS-$(CONFIG_MPEGAUDIODSP) += x86/imdct36.o diff --git a/libavcodec/x86/dsputil.asm b/libavcodec/x86/idctdsp.asm similarity index 98% rename from libavcodec/x86/dsputil.asm rename to libavcodec/x86/idctdsp.asm index c0c39fc231..44a1a6ef85 100644 --- a/libavcodec/x86/dsputil.asm +++ b/libavcodec/x86/idctdsp.asm @@ -1,5 +1,5 @@ ;****************************************************************************** -;* MMX optimized DSP utils +;* SIMD-optimized IDCT-related routines ;* Copyright (c) 2008 Loren Merritt ;* Copyright (c) 2003-2013 Michael Niedermayer ;* Copyright (c) 2013 Daniel Kang