diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-14 23:26:22 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-17 13:50:14 +0200 |
commit | 63eaf529bcfa2f685f5978d4ba4d327ac837c2e2 (patch) | |
tree | d82f3bb3dcc80043efae724b0f6476a3616bcccf /libavcodec/h263dsp.c | |
parent | bb42a7d4d4011101ddbd817c3a5f6d0d86ee26bd (diff) | |
download | ffmpeg-63eaf529bcfa2f685f5978d4ba4d327ac837c2e2.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functions in new file h263dsp_msa.c
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263dsp.c')
-rw-r--r-- | libavcodec/h263dsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263dsp.c b/libavcodec/h263dsp.c index a70ff24fdf..b3c0bcd450 100644 --- a/libavcodec/h263dsp.c +++ b/libavcodec/h263dsp.c @@ -121,4 +121,6 @@ av_cold void ff_h263dsp_init(H263DSPContext *ctx) if (ARCH_X86) ff_h263dsp_init_x86(ctx); + if (ARCH_MIPS) + ff_h263dsp_init_mips(ctx); } |