Re: [FFmpeg-devel] [PATCH 1/6] checkasm/takdsp: add decorrelate_ls test

2023-12-22 Thread Martin Storsjö
On Mon, 18 Dec 2023, flow gg wrote: +static void test_decorrelate_ls(TAKDSPContext *s) { +#define BUF_SIZE 1024 +declare_func(void, int32_t *, int32_t *, int); + +if (check_func(s->decorrelate_ls, "decorrelate_ls")) { +LOCAL_ALIGNED_32(int32_t, p1, [BUF_SIZE]); +LOCAL

[FFmpeg-devel] [PATCH 1/6] checkasm/takdsp: add decorrelate_ls test

2023-12-18 Thread flow gg
From 960f70964521e1dc94647d70e2631351c0bb51bb Mon Sep 17 00:00:00 2001 From: sunyuechi Date: Mon, 18 Dec 2023 22:39:13 +0800 Subject: [PATCH 1/6] checkasm/takdsp: add decorrelate_ls test --- tests/checkasm/Makefile | 1 + tests/checkasm/checkasm.c | 3 ++ tests/checkasm/checkasm.h | 1 + t