summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-08-26 15:22:15 +0000
committerMåns Rullgård <mans@mansr.com>2009-08-26 15:22:15 +0000
commitb97e0d7fa226a2bd3b0b99a03ce9b8703c2d18d1 (patch)
treeb8c6e61e79733c2f18d3370f64702b07af6510dc /libavcodec/4xm.c
parent95d36bdbc3541448f8678f131897e0d5dcc2a85e (diff)
4xm: provide 16-byte alignment where required
Originally committed as revision 19717 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 9bd026b5a2..cc0bcd4f86 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -137,7 +137,7 @@ typedef struct FourXContext{
int mv[256];
VLC pre_vlc;
int last_dc;
- DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
+ DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
void *bitstream_buffer;
unsigned int bitstream_buffer_size;
int version;