提交 b1d2f812 编写于 作者: J Jason Garrett-Glaser

VP8: token probs doesn't need padding

prob[0] is the only prob array ever accessed, so prob[1] can serve as padding
for prob[0].
上级 628b48db
...@@ -233,8 +233,7 @@ typedef struct { ...@@ -233,8 +233,7 @@ typedef struct {
uint8_t golden; uint8_t golden;
uint8_t pred16x16[4]; uint8_t pred16x16[4];
uint8_t pred8x8c[3]; uint8_t pred8x8c[3];
/* Padded to allow overreads */ uint8_t token[4][16][3][NUM_DCT_TOKENS-1];
uint8_t token[4][17][3][NUM_DCT_TOKENS-1];
uint8_t mvc[2][19]; uint8_t mvc[2][19];
} prob[2]; } prob[2];
} VP8Context; } VP8Context;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册