diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-29 20:57:14 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-07-06 18:25:14 +0200 |
commit | 709bb45c660ae7c2d065bcade931e068620f9b92 (patch) | |
tree | 4d6b5bb2ae122529ce93cbeffa9d78be3f56d444 /libavcodec/me_cmp.h | |
parent | 2f3f98af2b3215b7f3ab302275a0b3b4acaf84a5 (diff) | |
download | ffmpeg-709bb45c660ae7c2d065bcade931e068620f9b92.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for me_cmp functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for me_cmp functions in new file me_cmp_msa.c
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/me_cmp.h')
-rw-r--r-- | libavcodec/me_cmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/me_cmp.h b/libavcodec/me_cmp.h index 98ee53ce2a..a3603ec2c1 100644 --- a/libavcodec/me_cmp.h +++ b/libavcodec/me_cmp.h @@ -87,6 +87,7 @@ void ff_me_cmp_init_alpha(MECmpContext *c, AVCodecContext *avctx); void ff_me_cmp_init_arm(MECmpContext *c, AVCodecContext *avctx); void ff_me_cmp_init_ppc(MECmpContext *c, AVCodecContext *avctx); void ff_me_cmp_init_x86(MECmpContext *c, AVCodecContext *avctx); +void ff_me_cmp_init_mips(MECmpContext *c, AVCodecContext *avctx); void ff_set_cmp(MECmpContext *c, me_cmp_func *cmp, int type); |