aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/loongarch/Makefile
diff options
context:
space:
mode:
authoryuanhecai <yuanhecai@loongson.cn>2021-12-18 22:27:54 +0800
committerMichael Niedermayer <michael@niedermayer.cc>2021-12-23 12:28:54 +0100
commit72bcbe216ef3d47498392ed2bada83994cd9fc86 (patch)
tree27ec14e4088e463580ef473cfce2634a347c3782 /libavcodec/loongarch/Makefile
parented6c5c13b10930ea95c622d6ef6e32a6e2077018 (diff)
downloadffmpeg-72bcbe216ef3d47498392ed2bada83994cd9fc86.tar.gz
avcodec: [loongarch] Optimize vp8_lpf/mc with LSX.
./ffmpeg -i ../9_vp8_1080p_30fps_2Mbps.webm -f rawvideo -y /dev/null -an before: 210fps after : 585fps Reviewed-by: Shiyou Yin <yinshiyou-hf@loongson.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/loongarch/Makefile')
-rw-r--r--libavcodec/loongarch/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/loongarch/Makefile b/libavcodec/loongarch/Makefile
index 30799e4e48..4e1d827e19 100644
--- a/libavcodec/loongarch/Makefile
+++ b/libavcodec/loongarch/Makefile
@@ -2,9 +2,12 @@ OBJS-$(CONFIG_H264CHROMA) += loongarch/h264chroma_init_loongarch.o
OBJS-$(CONFIG_H264QPEL) += loongarch/h264qpel_init_loongarch.o
OBJS-$(CONFIG_H264DSP) += loongarch/h264dsp_init_loongarch.o
OBJS-$(CONFIG_H264PRED) += loongarch/h264_intrapred_init_loongarch.o
+OBJS-$(CONFIG_VP8_DECODER) += loongarch/vp8dsp_init_loongarch.o
LASX-OBJS-$(CONFIG_H264CHROMA) += loongarch/h264chroma_lasx.o
LASX-OBJS-$(CONFIG_H264QPEL) += loongarch/h264qpel_lasx.o
LASX-OBJS-$(CONFIG_H264DSP) += loongarch/h264dsp_lasx.o \
loongarch/h264idct_lasx.o \
loongarch/h264_deblock_lasx.o
LASX-OBJS-$(CONFIG_H264PRED) += loongarch/h264_intrapred_lasx.o
+LSX-OBJS-$(CONFIG_VP8_DECODER) += loongarch/vp8_mc_lsx.o \
+ loongarch/vp8_lpf_lsx.o