shithub: libvpx

Download patch

ref: d73217ab17ed6623fd836a574c504adcb1c5517a
parent: 93c32a55c2444b8245e8cba9187e1ec654d1fbc6
author: Johann <johannkoenig@google.com>
date: Mon Aug 23 09:35:26 EDT 2010

update structures

mbmi and eob moved in previous commits

Change-Id: I30a2eba36addf89ee50b406ad4afdd059a832711

--- a/vp8/decoder/detokenize.c
+++ b/vp8/decoder/detokenize.c
@@ -241,7 +241,7 @@
 
     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 @@
 
     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];
     }