[FFmpeg-cvslog] lavc/audiodsp: fix RISC-V V scalar product (again)

Rémi Denis-Courmont git at videolan.org
Mon Oct 17 07:40:32 EEST 2022


ffmpeg | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Oct 16 13:53:19 2022 +0300| [4d66e8c12e9540d5fa5131b89bb62bb6e90e7631] | committer: Lynne

lavc/audiodsp: fix RISC-V V scalar product (again)

The loop uses a 32-bit accumulator. The current code would only zero
the lower 16 bits thereof.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4d66e8c12e9540d5fa5131b89bb62bb6e90e7631
---

 libavcodec/riscv/audiodsp_rvv.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/riscv/audiodsp_rvv.S b/libavcodec/riscv/audiodsp_rvv.S
index 8e8bbd2058..af1e07bef9 100644
--- a/libavcodec/riscv/audiodsp_rvv.S
+++ b/libavcodec/riscv/audiodsp_rvv.S
@@ -21,7 +21,7 @@
 #include "libavutil/riscv/asm.S"
 
 func ff_scalarproduct_int16_rvv, zve32x
-        vsetivli    zero, 1, e16, m1, ta, ma
+        vsetivli    zero, 1, e32, m1, ta, ma
         vmv.s.x     v8, zero
 1:
         vsetvli     t0, a2, e16, m1, ta, ma



More information about the ffmpeg-cvslog mailing list