From: Deb Mukherjee Date: Tue, 23 Apr 2013 15:51:31 +0000 (-0700) Subject: Fix in token allocation with zerogroup expt X-Git-Tag: v1.3.0~1106^2~156^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64e7f017cebd8282ffc865028f3a90457753f327;p=libvpx Fix in token allocation with zerogroup expt Fix to increase allocation of tokens at very high rates. Change-Id: Ia27aa0316b0fab664230800f9c9947b5c68ecd58 --- 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_