summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2022-06-28 13:16:44 +0300
committerMartin Storsjö <martin@martin.st>2022-06-28 18:09:08 +0300
commit900424cda97082a0f0a4ed9ae6b081d2cef557d7 (patch)
tree35c505473616f7da68cdfb9580dcd46857804993 /tests
parent4454142782bd3db769939e63ea0f2e5e917dc29d (diff)
checkasm: Provide enough alignment in the new motion test
This fixes the checkasm test in some setups on x86. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/motion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/motion.c b/tests/checkasm/motion.c
index f337dd6f95..0112822174 100644
--- a/tests/checkasm/motion.c
+++ b/tests/checkasm/motion.c
@@ -48,8 +48,8 @@ static void test_motion(const char *name, me_cmp_func test_func)
int i, x, y, d1, d2;
uint8_t *ptr;
- LOCAL_ALIGNED_8(uint8_t, img1, [WIDTH * HEIGHT]);
- LOCAL_ALIGNED_8(uint8_t, img2, [WIDTH * HEIGHT]);
+ LOCAL_ALIGNED_16(uint8_t, img1, [WIDTH * HEIGHT]);
+ LOCAL_ALIGNED_16(uint8_t, img2, [WIDTH * HEIGHT]);
declare_func_emms(AV_CPU_FLAG_MMX, int, struct MpegEncContext *c,
uint8_t *blk1 /* align width (8 or 16) */,