Skip to content
Snippets Groups Projects
Commit a6ac4fcc authored by Martin Storsjö's avatar Martin Storsjö
Browse files

vp78: Align the intra4x4_pred_mode_top array within VP8Macroblock


This array is written using AV_WN32A, assuming alignment.

This hopefully fixes the failing vp7 fate test on sparc.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent b3d905b7
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ typedef struct VP8Macroblock { ...@@ -91,7 +91,7 @@ typedef struct VP8Macroblock {
uint8_t chroma_pred_mode; uint8_t chroma_pred_mode;
uint8_t segment; uint8_t segment;
uint8_t intra4x4_pred_mode_mb[16]; 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 mv;
VP56mv bmv[16]; VP56mv bmv[16];
} VP8Macroblock; } VP8Macroblock;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment