diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-08-17 07:49:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-08-17 07:49:22 +0000 |
commit | 3829a62eaec8bb8a336ae6c09fd03300de3e20f4 (patch) | |
tree | bd8f9c53822690fc8f63e8c4eecac19d5e20930c /libavcodec | |
parent | 1246640aa244671e446a76ece7150f832160d433 (diff) | |
download | ffmpeg-3829a62eaec8bb8a336ae6c09fd03300de3e20f4.tar.gz |
insufficient alignment
Originally committed as revision 6006 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/i386/fdct_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |