diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-14 23:26:24 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-19 14:00:12 +0200 |
commit | ee3ef5fda2f11cb5bf555d4f49698eb5dcde6ee1 (patch) | |
tree | 1a73603142c5ec7918364482e2bd3c39123d9a88 /libavcodec/hpeldsp.c | |
parent | d277b05c518a4c3f8f009afa7e3c7fbdae7460c3 (diff) | |
download | ffmpeg-ee3ef5fda2f11cb5bf555d4f49698eb5dcde6ee1.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for hpel functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for hpel functions in new file hpeldsp_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/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c index 7763760eb3..8e2fd8fcf5 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -365,4 +365,6 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags) ff_hpeldsp_init_ppc(c, flags); if (ARCH_X86) ff_hpeldsp_init_x86(c, flags); + if (ARCH_MIPS) + ff_hpeldsp_init_mips(c, flags); } |