Re: [FFmpeg-devel] [PATCH] tests/checkasm: add a test for VorbisDSPContext

2022-09-19 Thread James Almer
On 9/19/2022 2:57 PM, Rémi Denis-Courmont wrote: +void checkasm_check_vorbisdsp(void) +{ +VorbisDSPContext dsp; + +ff_vorbisdsp_init(&dsp); + +if (check_func(dsp.vorbis_inverse_coupling, "vorbis_inverse_coupling")) +test_inverse_coupling(); +report("vorbis_inverse_coupling

Re: [FFmpeg-devel] [PATCH] tests/checkasm: add a test for VorbisDSPContext

2022-09-19 Thread James Almer
On 9/19/2022 2:55 PM, Ronald S. Bultje wrote: Hi, On Mon, Sep 19, 2022 at 1:05 PM James Almer wrote: --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -165,6 +165,9 @@ static const struct { #if CONFIG_VIDEODSP { "videodsp", checkasm_check_videodsp }, #en

Re: [FFmpeg-devel] [PATCH] tests/checkasm: add a test for VorbisDSPContext

2022-09-19 Thread Rémi Denis-Courmont
Le maanantaina 19. syyskuuta 2022, 20.04.41 EEST James Almer a écrit : > Signed-off-by: James Almer > --- > tests/checkasm/Makefile| 1 + > tests/checkasm/checkasm.c | 3 ++ > tests/checkasm/checkasm.h | 1 + > tests/checkasm/vorbisdsp.c | 88 ++ > tes

Re: [FFmpeg-devel] [PATCH] tests/checkasm: add a test for VorbisDSPContext

2022-09-19 Thread Ronald S. Bultje
Hi, On Mon, Sep 19, 2022 at 1:05 PM James Almer wrote: > --- a/tests/checkasm/checkasm.c > +++ b/tests/checkasm/checkasm.c > @@ -165,6 +165,9 @@ static const struct { > #if CONFIG_VIDEODSP > { "videodsp", checkasm_check_videodsp }, > #endif > +#if CONFIG_VIDEODSP > +

[FFmpeg-devel] [PATCH] tests/checkasm: add a test for VorbisDSPContext

2022-09-19 Thread James Almer
Signed-off-by: James Almer --- tests/checkasm/Makefile| 1 + tests/checkasm/checkasm.c | 3 ++ tests/checkasm/checkasm.h | 1 + tests/checkasm/vorbisdsp.c | 88 ++ tests/fate/checkasm.mak| 1 + 5 files changed, 94 insertions(+) create mode 100644