aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mips/Makefile
diff options
context:
space:
mode:
authorShivraj Patil <shivraj.patil@imgtec.com>2015-06-10 19:48:40 +0530
committerMichael Niedermayer <michaelni@gmx.at>2015-06-11 17:10:45 +0200
commitfb92f3ecb4d48a5612ee61aa39bd538cac9d08cf (patch)
treef60612a94b011b4a0fefac3e5b5d9d5b5fff886f /libavcodec/mips/Makefile
parent1d70b6fe1d9d67a35daf2ec4c653ba3eff5d31b7 (diff)
downloadffmpeg-fb92f3ecb4d48a5612ee61aa39bd538cac9d08cf.tar.gz
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC idct functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for AVC idct functions in new file h264idct_msa.c Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mips/Makefile')
-rw-r--r--libavcodec/mips/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile
index 0a97e7cf1a..993c64902c 100644
--- a/libavcodec/mips/Makefile
+++ b/libavcodec/mips/Makefile
@@ -31,7 +31,8 @@ MSA-OBJS-$(CONFIG_HEVC_DECODER) += mips/hevcdsp_msa.o \
mips/hevc_idct_msa.o \
mips/hevc_lpf_sao_msa.o \
mips/hevcpred_msa.o
-MSA-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_msa.o
+MSA-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_msa.o \
+ mips/h264idct_msa.o
MSA-OBJS-$(CONFIG_H264CHROMA) += mips/h264chroma_msa.o
MSA-OBJS-$(CONFIG_H264PRED) += mips/h264pred_msa.o
LOONGSON3-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_mmi.o