mirror of
https://github.com/librempeg/librempeg
synced 2024-11-21 16:44:05 +00:00
checkasm: vc1dsp: Align buffers sufficiently for the mspel tests
This fixes crashes in the mspel tests on x86. Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
48ae9fc614
commit
3a8897c642
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user