diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-05-29 12:20:26 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-02 01:54:51 +0200 |
commit | aede1a1a60cc89bb663753fee1aad9feaca8a14a (patch) | |
tree | f8961f80bcd8fb16eb1b9478266dbfb3886a38e0 /libavcodec/mips/Makefile | |
parent | da05c624996f46d1b3547ac8fa62c7e7db09e345 (diff) | |
download | ffmpeg-aede1a1a60cc89bb663753fee1aad9feaca8a14a.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for HEVC bi mc functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for HEVC bi mc functions (qpel as well as epel) in new file hevc_mc_bi_msa.c
Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h
Adds HEVC specific macros (needed for this patch) in libavcodec/mips/hevc_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/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile index 9786175ad4..610ff1ae46 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -21,6 +21,7 @@ MIPSFPU-OBJS-$(CONFIG_AAC_ENCODER) += mips/iirfilter_mips.o OBJS-$(CONFIG_HEVC_DECODER) += mips/hevcdsp_init_mips.o OBJS-$(CONFIG_H264DSP) += mips/h264dsp_init_mips.o MSA-OBJS-$(CONFIG_HEVC_DECODER) += mips/hevcdsp_msa.o \ - mips/hevc_mc_uni_msa.o + mips/hevc_mc_uni_msa.o \ + mips/hevc_mc_bi_msa.o MSA-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_msa.o LOONGSON3-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_mmi.o |