1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

lavc/ac3dsp: fix R-V HAVE_RVV scope issue

fix R-V HAVE_RVV scope issue

Reviewed-by: Rémi Denis-Courmont <remi@remlab.net>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao
2025-01-08 19:06:30 +08:00
committed by Jun Zhao
parent 8ded602eda
commit b88fc4e098

View File

@ -64,9 +64,9 @@ av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
if (flags & AV_CPU_FLAG_RVV_I64)
c->sum_square_butterfly_int32 =
ff_sum_square_butterfly_int32_rvv;
# endif
# endif
}
}
# endif
#endif
}