update structures

mbmi and eob moved in previous commits

Change-Id: I30a2eba36addf89ee50b406ad4afdd059a832711
This commit is contained in:
Johann 2010-08-23 13:35:26 -04:00
parent 93c32a55c2
commit d73217ab17

View File

@ -241,7 +241,7 @@ int vp8_decode_mb_tokens(VP8D_COMP *dx, MACROBLOCKD *x)
type = 3;
if (x->mbmi.mode != B_PRED && x->mbmi.mode != SPLITMV)
if (x->mode_info_context->mbmi.mode != B_PRED && x->mode_info_context->mbmi.mode != SPLITMV)
{
type = 1;
eobtotal -= 16;
@ -251,7 +251,7 @@ int vp8_decode_mb_tokens(VP8D_COMP *dx, MACROBLOCKD *x)
for (i = 0; i < 25; i++)
{
x->block[i].eob = dx->detoken.eob[i];
x->eobs[i] = dx->detoken.eob[i];
eobtotal += dx->detoken.eob[i];
}