From 3829a62eaec8bb8a336ae6c09fd03300de3e20f4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 17 Aug 2006 07:49:22 +0000 Subject: [PATCH] insufficient alignment Originally committed as revision 6006 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/i386/fdct_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/i386/fdct_mmx.c b/libavcodec/i386/fdct_mmx.c index 03546c073b..78d7d18651 100644 --- a/libavcodec/i386/fdct_mmx.c +++ b/libavcodec/i386/fdct_mmx.c @@ -549,7 +549,7 @@ void ff_fdct_mmx2(int16_t *block) void ff_fdct_sse2(int16_t *block) { - int64_t align_tmp[16] ATTR_ALIGN(8); + int64_t align_tmp[16] ATTR_ALIGN(16); int16_t * const block_tmp= (int16_t*)align_tmp; int16_t *block1; -- GitLab