summaryrefslogtreecommitdiff
path: root/libavcodec/h264chroma.c
diff options
context:
space:
mode:
author周晓勇 <zhouxiaoyong@loongson.cn>2015-06-02 11:32:31 +0800
committerMichael Niedermayer <michaelni@gmx.at>2015-06-02 13:40:16 +0200
commitbb1f153a88f7334256f26d805b9d8f57b7cb66a5 (patch)
treef7c0f3f3ed64fbeda46287da4b788f4761965a74 /libavcodec/h264chroma.c
parentaede1a1a60cc89bb663753fee1aad9feaca8a14a (diff)
downloadffmpeg-bb1f153a88f7334256f26d805b9d8f57b7cb66a5.tar.gz
avcodec: loongson3 optimized h264chroma put and avg with mmi
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264chroma.c')
-rw-r--r--libavcodec/h264chroma.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264chroma.c b/libavcodec/h264chroma.c
index 5b3e13bdac..c2f1f30f5a 100644
--- a/libavcodec/h264chroma.c
+++ b/libavcodec/h264chroma.c
@@ -54,4 +54,6 @@ av_cold void ff_h264chroma_init(H264ChromaContext *c, int bit_depth)
ff_h264chroma_init_ppc(c, bit_depth);
if (ARCH_X86)
ff_h264chroma_init_x86(c, bit_depth);
+ if (ARCH_MIPS)
+ ff_h264chroma_init_mips(c, bit_depth);
}