Merge "decoder: reset segmentation map on keyframes"

This commit is contained in:
John Koleszar 2012-02-27 09:58:29 -08:00 committed by Gerrit Code Review
commit 02a31e6b3c

View File

@ -827,6 +827,12 @@ int vp8_decode_frame(VP8D_COMP *pbi)
}
}
}
else
{
/* No segmentation updates on this frame */
xd->update_mb_segmentation_map = 0;
xd->update_mb_segmentation_data = 0;
}
/* Read the loop filter level and type */
pc->filter_type = (LOOPFILTERTYPE) vp8_read_bit(bc);