OSDN Git Service

avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for pixblock functions
[android-x86/external-ffmpeg.git] / libavcodec / pixblockdsp.c
index ebde68b..322e1dd 100644 (file)
@@ -79,4 +79,6 @@ av_cold void ff_pixblockdsp_init(PixblockDSPContext *c, AVCodecContext *avctx)
         ff_pixblockdsp_init_ppc(c, avctx, high_bit_depth);
     if (ARCH_X86)
         ff_pixblockdsp_init_x86(c, avctx, high_bit_depth);
+    if (ARCH_MIPS)
+        ff_pixblockdsp_init_mips(c, avctx, high_bit_depth);
 }