[FFmpeg-cvslog] checkasm: vc1dsp: Align buffers sufficiently for the mspel tests
Martin Storsjö
git at videolan.org
Tue Apr 30 23:14:10 EEST 2024
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Apr 30 10:17:50 2024 +0300| [d11be191fa41c652bf6803a7d421a08e6f30d06b] | committer: Martin Storsjö
checkasm: vc1dsp: Align buffers sufficiently for the mspel tests
This fixes crashes in the mspel tests on x86.
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d11be191fa41c652bf6803a7d421a08e6f30d06b
---
tests/checkasm/vc1dsp.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/checkasm/vc1dsp.c b/tests/checkasm/vc1dsp.c
index 407d9e5fe8..f18f0f8251 100644
--- a/tests/checkasm/vc1dsp.c
+++ b/tests/checkasm/vc1dsp.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list