diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-04 13:31:47 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-04 18:39:53 +0200 |
commit | a34d902325895a1cecd322cbe94915225c91017a (patch) | |
tree | 393757fe569403685a422c702532c8d09d855aef /libavcodec/mips/Makefile | |
parent | 7131aba916d1f562bdaf6a81319f1421ce175b1e (diff) | |
download | ffmpeg-a34d902325895a1cecd322cbe94915225c91017a.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for HEVC idct functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for HEVC idct functions in new file hevc_idct_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 691ea3583e..463072a76d 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -25,7 +25,8 @@ 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_biw_msa.o + mips/hevc_mc_biw_msa.o \ + mips/hevc_idct_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 |