diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-02 14:08:10 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-03 21:01:59 +0200 |
commit | 88188f55a2b4c60900604088747675d336a5ab45 (patch) | |
tree | 8fb3320c8788b09236609d7d8ad7b0959ead9989 /libavcodec/mips/Makefile | |
parent | 120028968749cc65cc8eea491004d64bd5179487 (diff) | |
download | ffmpeg-88188f55a2b4c60900604088747675d336a5ab45.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for HEVC biw mc functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for HEVC biw mc functions (qpel as well as epel) in new file hevc_mc_biw_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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile index 9d8bf1da8c..691ea3583e 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -24,7 +24,8 @@ 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 + mips/hevc_mc_bi_msa.o \ + mips/hevc_mc_biw_msa.o MSA-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_msa.o LOONGSON3-OBJS-$(CONFIG_H264DSP) += mips/h264dsp_mmi.o LOONGSON3-OBJS-$(CONFIG_H264CHROMA) += mips/h264chroma_mmi.o |