summaryrefslogtreecommitdiff
path: root/libavcodec/qpeldsp.c
diff options
context:
space:
mode:
authorShivraj Patil <shivraj.patil@imgtec.com>2015-06-14 23:26:23 +0530
committerMichael Niedermayer <michaelni@gmx.at>2015-06-18 12:33:15 +0200
commit98eb1ac901276c1f348ad52f9eea8f11d66b511c (patch)
tree6ec8ef7c5e8dfc6a56efe5509f6f6c6d16513c18 /libavcodec/qpeldsp.c
parentd1050d9950610aa2b27878b67bb2b902dd717e7c (diff)
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for qpel functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for qpel functions in new file qpeldsp_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/qpeldsp.c')
-rw-r--r--libavcodec/qpeldsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/qpeldsp.c b/libavcodec/qpeldsp.c
index 1c0ec637d0..6e52b33657 100644
--- a/libavcodec/qpeldsp.c
+++ b/libavcodec/qpeldsp.c
@@ -811,4 +811,6 @@ av_cold void ff_qpeldsp_init(QpelDSPContext *c)
if (ARCH_X86)
ff_qpeldsp_init_x86(c);
+ if (ARCH_MIPS)
+ ff_qpeldsp_init_mips(c);
}