summaryrefslogtreecommitdiff
path: root/libavcodec/videodsp.c
diff options
context:
space:
mode:
authorKaustubh Raste <kaustubh.raste@imgtec.com>2017-07-12 17:32:32 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2017-07-14 02:30:37 +0200
commitdf806605f7b72584ee99497c41514585574b53b8 (patch)
treef8e0713eb62263d56d1efb04116525035a40548f /libavcodec/videodsp.c
parent5688fd77b57f1dd454990dc6fe48c6a3a1729eca (diff)
avcodec: Add prefetch for mips
Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com> Reviewed-by: Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/videodsp.c')
-rw-r--r--libavcodec/videodsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/videodsp.c b/libavcodec/videodsp.c
index ba618a7bbc..ce9e9eb143 100644
--- a/libavcodec/videodsp.c
+++ b/libavcodec/videodsp.c
@@ -52,4 +52,6 @@ av_cold void ff_videodsp_init(VideoDSPContext *ctx, int bpc)
ff_videodsp_init_ppc(ctx, bpc);
if (ARCH_X86)
ff_videodsp_init_x86(ctx, bpc);
+ if (ARCH_MIPS)
+ ff_videodsp_init_mips(ctx, bpc);
}