diff options
author | Henrik Gramner <gramner@twoorioles.com> | 2025-05-16 15:18:14 +0200 |
---|---|---|
committer | Henrik Gramner <henrik@gramner.com> | 2025-05-19 15:56:27 +0200 |
commit | fd18ae88ae736b5aabff34e17394fcd103f9e5ad (patch) | |
tree | 4263056347dad98d15b0f104fe128a67a69b9128 /tests/checkasm/vp9dsp.c | |
parent | b6803bf10419770737f8dd77497b9afb8ffebcff (diff) | |
download | ffmpeg-fd18ae88ae736b5aabff34e17394fcd103f9e5ad.tar.gz |
avcodec/x86/vp9: Add AVX-512ICL for 16x16 and 32x32 8bpc inverse transforms
Diffstat (limited to 'tests/checkasm/vp9dsp.c')
-rw-r--r-- | tests/checkasm/vp9dsp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/checkasm/vp9dsp.c b/tests/checkasm/vp9dsp.c index cecd0dee0f..bddc9a79fc 100644 --- a/tests/checkasm/vp9dsp.c +++ b/tests/checkasm/vp9dsp.c @@ -310,13 +310,13 @@ static int is_zero(const int16_t *c, int sz) static void check_itxfm(void) { - LOCAL_ALIGNED_32(uint8_t, src, [32 * 32 * 2]); - LOCAL_ALIGNED_32(uint8_t, dst, [32 * 32 * 2]); - LOCAL_ALIGNED_32(uint8_t, dst0, [32 * 32 * 2]); - LOCAL_ALIGNED_32(uint8_t, dst1, [32 * 32 * 2]); - LOCAL_ALIGNED_32(int16_t, coef, [32 * 32 * 2]); - LOCAL_ALIGNED_32(int16_t, subcoef0, [32 * 32 * 2]); - LOCAL_ALIGNED_32(int16_t, subcoef1, [32 * 32 * 2]); + LOCAL_ALIGNED_64(uint8_t, src, [32 * 32 * 2]); + LOCAL_ALIGNED_64(uint8_t, dst, [32 * 32 * 2]); + LOCAL_ALIGNED_64(uint8_t, dst0, [32 * 32 * 2]); + LOCAL_ALIGNED_64(uint8_t, dst1, [32 * 32 * 2]); + LOCAL_ALIGNED_64(int16_t, coef, [32 * 32 * 2]); + LOCAL_ALIGNED_64(int16_t, subcoef0, [32 * 32 * 2]); + LOCAL_ALIGNED_64(int16_t, subcoef1, [32 * 32 * 2]); declare_func_emms(AV_CPU_FLAG_MMX | AV_CPU_FLAG_MMXEXT, void, uint8_t *dst, ptrdiff_t stride, int16_t *block, int eob); VP9DSPContext dsp; int y, x, tx, txtp, bit_depth, sub; |