Re: [FFmpeg-devel] [PATCH v2] riscv: vc1dsp: Don't check vlenb before checking the CPU flags

2023-12-16 Thread Martin Storsjö
On Sat, 16 Dec 2023, Rémi Denis-Courmont wrote: Le perjantaina 15. joulukuuta 2023, 17.38.45 EET Martin Storsjö a écrit : We can't call ff_get_rv_vlenb() if we don't have RVV available at all. Due to the SIGILL signal handler in checkasm catching it, in an unexpected place, this caused

Re: [FFmpeg-devel] [PATCH v2] riscv: vc1dsp: Don't check vlenb before checking the CPU flags

2023-12-16 Thread Rémi Denis-Courmont
Le perjantaina 15. joulukuuta 2023, 17.38.45 EET Martin Storsjö a écrit : > We can't call ff_get_rv_vlenb() if we don't have RVV available > at all. > > Due to the SIGILL signal handler in checkasm catching it, in an > unexpected place, this caused checkasm to hang instead of reporting > the

[FFmpeg-devel] [PATCH v2] riscv: vc1dsp: Don't check vlenb before checking the CPU flags

2023-12-15 Thread Martin Storsjö
We can't call ff_get_rv_vlenb() if we don't have RVV available at all. Due to the SIGILL signal handler in checkasm catching it, in an unexpected place, this caused checkasm to hang instead of reporting the issue. --- libavcodec/riscv/vc1dsp_init.c | 8 +++- 1 file changed, 3 insertions(+),