summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-15 01:22:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-15 01:23:00 +0200
commit2adcd15f2e02e240b31353285f9336a4cbab8274 (patch)
treefc3ad9723baf4576b42f570ff6401ed88c179d89 /libavcodec/vp8.h
parent4959a4fcf76e7c595dbb23c4e3bf59abf2e60ea4 (diff)
parenta6ac4fcce44108f6f87278b8d12e890576f46a62 (diff)
Merge commit 'a6ac4fcce44108f6f87278b8d12e890576f46a62'
* commit 'a6ac4fcce44108f6f87278b8d12e890576f46a62': vp78: Align the intra4x4_pred_mode_top array within VP8Macroblock Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp8.h')
-rw-r--r--libavcodec/vp8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8.h b/libavcodec/vp8.h
index 76c8a4401a..534c08160b 100644
--- a/libavcodec/vp8.h
+++ b/libavcodec/vp8.h
@@ -93,7 +93,7 @@ typedef struct VP8Macroblock {
uint8_t chroma_pred_mode;
uint8_t segment;
uint8_t intra4x4_pred_mode_mb[16];
- uint8_t intra4x4_pred_mode_top[4];
+ DECLARE_ALIGNED(4, uint8_t, intra4x4_pred_mode_top)[4];
VP56mv mv;
VP56mv bmv[16];
} VP8Macroblock;