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

View File

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