aboutsummaryrefslogtreecommitdiffstats
path: root/tests/checkasm/vp9dsp.c
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2025-05-16 15:18:14 +0200
committerHenrik Gramner <henrik@gramner.com>2025-05-19 15:56:27 +0200
commitfd18ae88ae736b5aabff34e17394fcd103f9e5ad (patch)
tree4263056347dad98d15b0f104fe128a67a69b9128 /tests/checkasm/vp9dsp.c
parentb6803bf10419770737f8dd77497b9afb8ffebcff (diff)
downloadffmpeg-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.c14
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;