Fix in token allocation with zerogroup expt
Fix to increase allocation of tokens at very high rates. Change-Id: Ia27aa0316b0fab664230800f9c9947b5c68ecd58
This commit is contained in:
parent
0defc2ddb3
commit
64e7f017ce
@ -361,6 +361,10 @@ static int get_mb_col(const MACROBLOCKD *xd) {
|
||||
}
|
||||
|
||||
static int get_token_alloc(int mb_rows, int mb_cols) {
|
||||
#if CONFIG_CODE_ZEROGROUP
|
||||
return mb_rows * mb_cols * (24 * 16 * 2);
|
||||
#else
|
||||
return mb_rows * mb_cols * (24 * 16 + 4);
|
||||
#endif
|
||||
}
|
||||
#endif // VP9_COMMON_VP9_ONYXC_INT_H_
|
||||
|
Loading…
x
Reference in New Issue
Block a user