aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mips/blockdsp_mips.h
diff options
context:
space:
mode:
author周晓勇 <zhouxiaoyong@loongson.cn>2015-07-21 21:29:11 +0800
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-21 17:50:19 +0200
commitc303ad85a9e498ba089e92dfa23fda542684cdc3 (patch)
tree9af3f4edaf7c352c3bf65f583c1fb036b053b8b5 /libavcodec/mips/blockdsp_mips.h
parent39867f3e098ab304cd3bef0ace19d73617cdb817 (diff)
downloadffmpeg-c303ad85a9e498ba089e92dfa23fda542684cdc3.tar.gz
avcodec: loongson optimize blockdsp with mmi
Signed-off-by: ZhouXiaoyong <zhouxiaoyong@loongson.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mips/blockdsp_mips.h')
-rw-r--r--libavcodec/mips/blockdsp_mips.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/mips/blockdsp_mips.h b/libavcodec/mips/blockdsp_mips.h
index 0b6bb67c8f..9559d40eaa 100644
--- a/libavcodec/mips/blockdsp_mips.h
+++ b/libavcodec/mips/blockdsp_mips.h
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2015 Parag Salasakar (parag.salasakar@imgtec.com)
+ * Zhou Xiaoyong <zhouxiaoyong@loongson.cn>
*
* This file is part of FFmpeg.
*
@@ -28,4 +29,9 @@ void ff_fill_block8_msa(uint8_t *src, uint8_t val, int stride, int height);
void ff_clear_block_msa(int16_t *block);
void ff_clear_blocks_msa(int16_t *block);
+void ff_fill_block16_mmi(uint8_t *block, uint8_t value, int line_size, int h);
+void ff_fill_block8_mmi(uint8_t *block, uint8_t value, int line_size, int h);
+void ff_clear_block_mmi(int16_t *block);
+void ff_clear_blocks_mmi(int16_t *block);
+
#endif // #ifndef AVCODEC_MIPS_BLOCKDSP_MIPS_H