summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264pred.c
diff options
context:
space:
mode:
authorShivraj Patil <shivraj.patil@imgtec.com>2015-06-10 19:48:39 +0530
committerMichael Niedermayer <michaelni@gmx.at>2015-06-11 17:10:41 +0200
commit1d70b6fe1d9d67a35daf2ec4c653ba3eff5d31b7 (patch)
treed55198dc935acdc437ddcb6f247848d327ee80a3 /libavcodec/h264pred.c
parentdaf1158d77438383e1d465dfe5c905d76182d2df (diff)
downloadffmpeg-streaming-1d70b6fe1d9d67a35daf2ec4c653ba3eff5d31b7.zip
ffmpeg-streaming-1d70b6fe1d9d67a35daf2ec4c653ba3eff5d31b7.tar.gz
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC intra prediction functions
This patch adds MSA (MIPS-SIMD-Arch) optimizations for AVC intra prediction functions in new file h264pred_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/h264pred.c')
-rw-r--r--libavcodec/h264pred.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index 044fc90..497b080 100644
--- a/libavcodec/h264pred.c
+++ b/libavcodec/h264pred.c
@@ -594,4 +594,5 @@ av_cold void ff_h264_pred_init(H264PredContext *h, int codec_id,
if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id, bit_depth, chroma_format_idc);
if (ARCH_X86) ff_h264_pred_init_x86(h, codec_id, bit_depth, chroma_format_idc);
+ if (ARCH_MIPS) ff_h264_pred_init_mips(h, codec_id, bit_depth, chroma_format_idc);
}
OpenPOWER on IntegriCloud