lavfi/riscv: depend on RVB and simplify accordingly

This commit is contained in:
Rémi Denis-Courmont 2024-07-27 14:30:17 +03:00
parent 616fdeaea3
commit f30e5bf1f5

View File

@ -34,7 +34,7 @@ av_cold void ff_afir_init_riscv(AudioFIRDSPContext *s)
int flags = av_get_cpu_flags();
if (flags & AV_CPU_FLAG_RVV_F64) {
if (flags & AV_CPU_FLAG_RVB_ADDR) {
if (flags & AV_CPU_FLAG_RVB) {
s->fcmul_add = ff_fcmul_add_rvv;
}
}