diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-14 23:26:26 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-29 12:03:43 +0200 |
commit | d9deae04a78b6b698b90d050a67a3bd9155aba74 (patch) | |
tree | bd206629dbbe92e8704746195c793abca9f7f91a /libavcodec/pixblockdsp.h | |
parent | 21cede9e970aca7aa0981f7be8378d48fd8e7730 (diff) | |
download | ffmpeg-d9deae04a78b6b698b90d050a67a3bd9155aba74.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for pixblock functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for pixblock functions in new file pixblockdsp_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/pixblockdsp.h')
-rw-r--r-- | libavcodec/pixblockdsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/pixblockdsp.h b/libavcodec/pixblockdsp.h index d4b8590341..79ed86c3a6 100644 --- a/libavcodec/pixblockdsp.h +++ b/libavcodec/pixblockdsp.h @@ -42,5 +42,7 @@ void ff_pixblockdsp_init_ppc(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth); void ff_pixblockdsp_init_x86(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth); +void ff_pixblockdsp_init_mips(PixblockDSPContext *c, AVCodecContext *avctx, + unsigned high_bit_depth); #endif /* AVCODEC_PIXBLOCKDSP_H */ |