Commit d11be191 authored by Martin Storsjö's avatar Martin Storsjö

checkasm: vc1dsp: Align buffers sufficiently for the mspel tests

This fixes crashes in the mspel tests on x86.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 1d89de03
......@@ -441,10 +441,10 @@ static void check_unescape(void)
static void check_mspel_pixels(void)
{
LOCAL_ALIGNED_8(uint8_t, src0, [32 * 32]);
LOCAL_ALIGNED_8(uint8_t, src1, [32 * 32]);
LOCAL_ALIGNED_8(uint8_t, dst0, [32 * 32]);
LOCAL_ALIGNED_8(uint8_t, dst1, [32 * 32]);
LOCAL_ALIGNED_16(uint8_t, src0, [32 * 32]);
LOCAL_ALIGNED_16(uint8_t, src1, [32 * 32]);
LOCAL_ALIGNED_16(uint8_t, dst0, [32 * 32]);
LOCAL_ALIGNED_16(uint8_t, dst1, [32 * 32]);
VC1DSPContext h;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment