diff options
author | 周晓勇 <zhouxiaoyong@loongson.cn> | 2015-06-02 11:32:31 +0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-02 13:40:16 +0200 |
commit | bb1f153a88f7334256f26d805b9d8f57b7cb66a5 (patch) | |
tree | f7c0f3f3ed64fbeda46287da4b788f4761965a74 /libavcodec/h264chroma.c | |
parent | aede1a1a60cc89bb663753fee1aad9feaca8a14a (diff) | |
download | ffmpeg-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.c | 2 |
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); } |