Merge "Pick up top left mbmi for supertx decode." into nextgenv2
diff --git a/vp10/decoder/decodeframe.c b/vp10/decoder/decodeframe.c
index d9e0d2c..83d08b1 100644
--- a/vp10/decoder/decodeframe.c
+++ b/vp10/decoder/decodeframe.c
@@ -1785,9 +1785,10 @@
if (!skip) {
int eobtotal = 0;
- MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi;
+ MB_MODE_INFO *mbmi;
set_offsets_topblock(cm, xd, tile, bsize, mi_row, mi_col);
- xd->mi[0]->mbmi.tx_type = txfm;
+ mbmi = &xd->mi[0]->mbmi;
+ mbmi->tx_type = txfm;
for (i = 0; i < MAX_MB_PLANE; ++i) {
const struct macroblockd_plane *const pd = &xd->plane[i];
const int num_4x4_w = pd->n4_w;