Merge "Fix block size computation in coeff token packing" into nextgenv2

This commit is contained in:
Jingning Han 2015-11-03 00:28:15 +00:00 committed by Gerrit Code Review
commit 506e3b136c

View File

@ -326,7 +326,7 @@ static void pack_mb_tokens(vpx_writer *w,
TOKENEXTRA *p = *tp; TOKENEXTRA *p = *tp;
#if CONFIG_VAR_TX #if CONFIG_VAR_TX
int count = 0; int count = 0;
const int seg_eob = 16 << (1 << tx); const int seg_eob = 16 << (tx << 1);
#endif #endif
#if !CONFIG_MISC_FIXES #if !CONFIG_MISC_FIXES
(void) tx; (void) tx;