diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2022-09-27 23:04:22 +0300 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2022-09-28 11:46:11 +0200 |
commit | b29ee63a1b70263c8e69cd1b66ec9a44bcb8f0c8 (patch) | |
tree | 2ee81445869185074d8d50f4c3b118c7de73882c /libavcodec/idctdsp.c | |
parent | c47ebfa141565a6bcaf6eeb699f135f81efacc63 (diff) | |
download | ffmpeg-b29ee63a1b70263c8e69cd1b66ec9a44bcb8f0c8.tar.gz |
lavc/idctdsp: RISC-V V put_pixels_clamped function
Diffstat (limited to 'libavcodec/idctdsp.c')
-rw-r--r-- | libavcodec/idctdsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/idctdsp.c b/libavcodec/idctdsp.c index 9035003b72..4ee9c3aa74 100644 --- a/libavcodec/idctdsp.c +++ b/libavcodec/idctdsp.c @@ -312,6 +312,8 @@ av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx) ff_idctdsp_init_arm(c, avctx, high_bit_depth); #elif ARCH_PPC ff_idctdsp_init_ppc(c, avctx, high_bit_depth); +#elif ARCH_RISCV + ff_idctdsp_init_riscv(c, avctx, high_bit_depth); #elif ARCH_X86 ff_idctdsp_init_x86(c, avctx, high_bit_depth); #elif ARCH_MIPS |