mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
lavu/floatdsp: RISC-V V butterflies_float
This commit is contained in:
parent
f4ea45040f
commit
47ce9735cc
2 changed files with 20 additions and 0 deletions
|
|
@ -33,6 +33,7 @@ void ff_vector_fmul_scalar_rvv(float *dst, const float *src, float mul,
|
|||
int len);
|
||||
void ff_vector_fmul_add_rvv(float *dst, const float *src0, const float *src1,
|
||||
const float *src2, int len);
|
||||
void ff_butterflies_float_rvv(float *v1, float *v2, int len);
|
||||
|
||||
void ff_vector_dmul_rvv(double *dst, const double *src0, const double *src1,
|
||||
int len);
|
||||
|
|
@ -51,6 +52,7 @@ av_cold void ff_float_dsp_init_riscv(AVFloatDSPContext *fdsp)
|
|||
fdsp->vector_fmac_scalar = ff_vector_fmac_scalar_rvv;
|
||||
fdsp->vector_fmul_scalar = ff_vector_fmul_scalar_rvv;
|
||||
fdsp->vector_fmul_add = ff_vector_fmul_add_rvv;
|
||||
fdsp->butterflies_float = ff_butterflies_float_rvv;
|
||||
}
|
||||
|
||||
if (flags & AV_CPU_FLAG_RVV_F64) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue