From 64e7f017cebd8282ffc865028f3a90457753f327 Mon Sep 17 00:00:00 2001 From: Deb Mukherjee Date: Tue, 23 Apr 2013 08:51:31 -0700 Subject: [PATCH] Fix in token allocation with zerogroup expt Fix to increase allocation of tokens at very high rates. Change-Id: Ia27aa0316b0fab664230800f9c9947b5c68ecd58 --- vp9/common/vp9_onyxc_int.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vp9/common/vp9_onyxc_int.h b/vp9/common/vp9_onyxc_int.h index 8f957345d..84cb9eff3 100644 --- a/vp9/common/vp9_onyxc_int.h +++ b/vp9/common/vp9_onyxc_int.h @@ -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_ -- 2.40.0