diff options
author | Arnie Chang <arnie.chang@sifive.com> | 2023-05-25 20:33:27 +0800 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-30 17:15:05 +0200 |
commit | c5508f60c255f7c3c17ac84d0d9c0033094d8a96 (patch) | |
tree | 0f8e1ecca26467145df95e58cf7c83e7525f31df /libavcodec/riscv/Makefile | |
parent | b01cfdb4ab1900f4908c2659f8c3f107fcd31605 (diff) | |
download | ffmpeg-c5508f60c255f7c3c17ac84d0d9c0033094d8a96.tar.gz |
lavc/h264chroma: RISC-V V add motion compensation for 8x8 chroma blocks
Optimize the put and avg filtering for 8x8 chroma blocks
Signed-off-by: Arnie Chang <arnie.chang@sifive.com>
Diffstat (limited to 'libavcodec/riscv/Makefile')
-rw-r--r-- | libavcodec/riscv/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/riscv/Makefile b/libavcodec/riscv/Makefile index 965942f4df..ee17a521fd 100644 --- a/libavcodec/riscv/Makefile +++ b/libavcodec/riscv/Makefile @@ -10,6 +10,8 @@ OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o \ RVV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvv.o OBJS-$(CONFIG_FMTCONVERT) += riscv/fmtconvert_init.o RVV-OBJS-$(CONFIG_FMTCONVERT) += riscv/fmtconvert_rvv.o +OBJS-$(CONFIG_H264CHROMA) += riscv/h264_chroma_init_riscv.o +RVV-OBJS-$(CONFIG_H264CHROMA) += riscv/h264_mc_chroma.o OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_init.o RVV-OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_rvv.o OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_init.o |