diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2015-06-11 11:31:12 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-13 02:21:55 +0200 |
commit | 178ba1fd03c85835a70ec5b365d62ec6582da97f (patch) | |
tree | e6c70e68be9d2b14085490072b3e172cea355e54 /libavcodec/h264qpel.h | |
parent | b8ba2d3915b3e74990c73b2671290d7ad312513e (diff) | |
download | ffmpeg-178ba1fd03c85835a70ec5b365d62ec6582da97f.tar.gz |
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC qpel functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for AVC qpel functions in new file h264qpel_msa.c
Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h
Added const to local static array.
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264qpel.h')
-rw-r--r-- | libavcodec/h264qpel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264qpel.h b/libavcodec/h264qpel.h index d71130d1e3..7c57ad001c 100644 --- a/libavcodec/h264qpel.h +++ b/libavcodec/h264qpel.h @@ -35,5 +35,6 @@ void ff_h264qpel_init_aarch64(H264QpelContext *c, int bit_depth); void ff_h264qpel_init_arm(H264QpelContext *c, int bit_depth); void ff_h264qpel_init_ppc(H264QpelContext *c, int bit_depth); void ff_h264qpel_init_x86(H264QpelContext *c, int bit_depth); +void ff_h264qpel_init_mips(H264QpelContext *c, int bit_depth); #endif /* AVCODEC_H264QPEL_H */ |