summaryrefslogtreecommitdiff
path: root/libavcodec/h264pred.c
diff options
context:
space:
mode:
authorHao Chen <chenhao@loongson.cn>2021-12-15 11:51:10 +0800
committerMichael Niedermayer <michael@niedermayer.cc>2021-12-15 18:37:40 +0100
commitdf46d7cb49ce301d83c1d20cfc4ef47390d47691 (patch)
tree2b31ed98cf75c00f8143f67a94a266c119281a33 /libavcodec/h264pred.c
parent1ccc45896096b39b9a0d5650618d384df30d15e4 (diff)
avcodec: [loongarch] Optimize pred16x16_plane with LASX.
./ffmpeg -i ../1_h264_1080p_30fps_3Mbps.mp4 -f rawvideo -y /dev/null -an before:295 after :296 Change-Id: I281bc739f708d45f91fc3860150944c0b8a6a5ba Reviewed-by: Shiyou Yin <yinshiyou-hf@loongson.cn> Reviewed-by: guxiwei <guxiwei-hf@loongson.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r--libavcodec/h264pred.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index b0fec71f25..bd0d4a3d06 100644
--- a/libavcodec/h264pred.c
+++ b/libavcodec/h264pred.c
@@ -602,4 +602,6 @@ av_cold void ff_h264_pred_init(H264PredContext *h, int codec_id,
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);
+ if (ARCH_LOONGARCH)
+ ff_h264_pred_init_loongarch(h, codec_id, bit_depth, chroma_format_idc);
}