diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-04-17 18:42:28 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-17 17:39:32 +0200 |
commit | 4efc0e6451fa77e1e1d5b4b3873917c1916765f1 (patch) | |
tree | af4cf4faebc24ded53b1d71bc89de6e4ddfd5a13 /libavcodec/hevcdsp.c | |
parent | 35a7170e69b31f0299a85261bf48babdc5d4883f (diff) | |
download | ffmpeg-4efc0e6451fa77e1e1d5b4b3873917c1916765f1.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for HEVC horizontal and vertical mc functions
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Reviewed-by: Nedeljko Babic <Nedeljko.Babic@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.c')
-rw-r--r-- | libavcodec/hevcdsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index 04af178e11..be01e927f1 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -261,4 +261,6 @@ int i = 0; ff_hevc_dsp_init_x86(hevcdsp, bit_depth); if (ARCH_ARM) ff_hevcdsp_init_arm(hevcdsp, bit_depth); + if (ARCH_MIPS) + ff_hevc_dsp_init_mips(hevcdsp, bit_depth); } |