diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-14 23:26:23 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-18 12:33:15 +0200 |
commit | 98eb1ac901276c1f348ad52f9eea8f11d66b511c (patch) | |
tree | 6ec8ef7c5e8dfc6a56efe5509f6f6c6d16513c18 /libavcodec/qpeldsp.h | |
parent | d1050d9950610aa2b27878b67bb2b902dd717e7c (diff) | |
download | ffmpeg-98eb1ac901276c1f348ad52f9eea8f11d66b511c.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for qpel functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for qpel functions in new file qpeldsp_msa.c
Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/qpeldsp.h')
-rw-r--r-- | libavcodec/qpeldsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/qpeldsp.h b/libavcodec/qpeldsp.h index b51420a6a2..91019eda9c 100644 --- a/libavcodec/qpeldsp.h +++ b/libavcodec/qpeldsp.h @@ -78,5 +78,6 @@ typedef struct QpelDSPContext { void ff_qpeldsp_init(QpelDSPContext *c); void ff_qpeldsp_init_x86(QpelDSPContext *c); +void ff_qpeldsp_init_mips(QpelDSPContext *c); #endif /* AVCODEC_QPELDSP_H */ |