diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-02 14:08:09 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-03 13:46:47 +0200 |
commit | ce1761db19af10a10bca74a2a48548cb3275cf2d (patch) | |
tree | 23c2ff84ee6c59127cd9fa54fd743ba68784e451 /libavcodec/mips/Makefile | |
parent | d7a762553c6f6c422adb6632354bcc4ff577b701 (diff) | |
download | ffmpeg-ce1761db19af10a10bca74a2a48548cb3275cf2d.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for HEVC uniw mc functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for HEVC uniw mc functions (qpel as well as epel) in new file hevc_mc_uniw_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/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile index 5999fa7888..9d8bf1da8c 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -23,6 +23,7 @@ OBJS-$(CONFIG_H264DSP) += mips/h264dsp_init_mips.o OBJS-$(CONFIG_H264CHROMA) += mips/h264chroma_init_mips.o MSA-OBJS-$(CONFIG_HEVC_DECODER) += mips/hevcdsp_msa.o \ mips/hevc_mc_uni_msa.o \ + mips/hevc_mc_uniw_msa.o \ mips/hevc_mc_bi_msa.o MSA-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_msa.o LOONGSON3-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_mmi.o |