diff options
author | Alexander Strange <astrange@ithinksw.com> | 2008-04-08 01:09:33 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-04-08 01:09:33 +0000 |
commit | 8e5f465f4c5e5750058da3b65a61e77db08b4d1c (patch) | |
tree | d67f7d23e837f5dab51e953307d6e321fdee166c /libavcodec/wmv2.h | |
parent | 6363827e13a430ad6c27bf18780e13b998effe43 (diff) | |
download | ffmpeg-8e5f465f4c5e5750058da3b65a61e77db08b4d1c.tar.gz |
Increase alignment for DCT block arrays from 8 to 16
Patch by Alexander Strange ( astrange ithinksw com )
Originally committed as revision 12767 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmv2.h')
-rw-r--r-- | libavcodec/wmv2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2.h b/libavcodec/wmv2.h index 2fd842e6a2..9d43ec547e 100644 --- a/libavcodec/wmv2.h +++ b/libavcodec/wmv2.h @@ -50,7 +50,7 @@ typedef struct Wmv2Context{ int hshift; ScanTable abt_scantable[2]; - DECLARE_ALIGNED_8(DCTELEM, abt_block2[6][64]); + DECLARE_ALIGNED_16(DCTELEM, abt_block2[6][64]); }Wmv2Context; void ff_wmv2_common_init(Wmv2Context * w); |