diff options
author | Hao Chen <chenhao@loongson.cn> | 2022-02-17 19:11:50 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-03-01 23:53:40 +0100 |
commit | a70a5b7c62c3189d2d428d044f883148f340e5f6 (patch) | |
tree | 2cac2490da821b1cb5ee4cb67fe958e53447f3e3 /libavcodec/loongarch/Makefile | |
parent | b6ceeee16bebab698321cd03f7010701e92294b4 (diff) | |
download | ffmpeg-a70a5b7c62c3189d2d428d044f883148f340e5f6.tar.gz |
avcodec: [loongarch] Optimize Hevc_mc_bi with LSX.
ffmpeg -i 5_h265_1080p_60fps_3Mbps.mkv -f rawvideo -y /dev/null -an
before: 124fps
after : 182fps
Signed-off-by: Hao Chen <chenhao@loongson.cn>
Reviewed-by: 殷时友 <yinshiyou-hf@loongson.cn>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/loongarch/Makefile')
-rw-r--r-- | libavcodec/loongarch/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/loongarch/Makefile b/libavcodec/loongarch/Makefile index cfc8e3aaff..620fba7192 100644 --- a/libavcodec/loongarch/Makefile +++ b/libavcodec/loongarch/Makefile @@ -27,4 +27,5 @@ LSX-OBJS-$(CONFIG_VP9_DECODER) += loongarch/vp9_mc_lsx.o \ loongarch/vp9_idct_lsx.o LSX-OBJS-$(CONFIG_HEVC_DECODER) += loongarch/hevcdsp_lsx.o \ loongarch/hevc_idct_lsx.o \ - loongarch/hevc_lpf_sao_lsx.o + loongarch/hevc_lpf_sao_lsx.o \ + loongarch/hevc_mc_bi_lsx.o |