diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2023-10-05 19:09:07 +0300 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2023-10-09 19:52:51 +0300 |
commit | 3c6516330f6452db9463f954d04710cf7effed6b (patch) | |
tree | 958519b000c1491084788a84e6b3e6ae60ea87ea /libavcodec/exrdsp.c | |
parent | f39a8790e165589d0498ea86958d77b2b9fab8e8 (diff) | |
download | ffmpeg-3c6516330f6452db9463f954d04710cf7effed6b.tar.gz |
lavc/exrdsp: R-V V reoder_pixels
Diffstat (limited to 'libavcodec/exrdsp.c')
-rw-r--r-- | libavcodec/exrdsp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/exrdsp.c b/libavcodec/exrdsp.c index 8259da4841..752e1eb553 100644 --- a/libavcodec/exrdsp.c +++ b/libavcodec/exrdsp.c @@ -51,7 +51,9 @@ av_cold void ff_exrdsp_init(ExrDSPContext *c) c->reorder_pixels = reorder_pixels_scalar; c->predictor = predictor_scalar; -#if ARCH_X86 +#if ARCH_RISCV + ff_exrdsp_init_riscv(c); +#elif ARCH_X86 ff_exrdsp_init_x86(c); #endif } |