From 1d70b6fe1d9d67a35daf2ec4c653ba3eff5d31b7 Mon Sep 17 00:00:00 2001 From: Shivraj Patil Date: Wed, 10 Jun 2015 19:48:39 +0530 Subject: 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 Signed-off-by: Michael Niedermayer --- libavcodec/h264pred.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/h264pred.c') 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); } -- cgit v1.1