shithub: libvpx

Download patch

ref: 69d1d1d8653281888e2ec8313c5676c48420da1d
parent: 204d1b70587ef3698bcce1e337da934532dd65b5
author: Scott LaVarnway <slavarnway@google.com>
date: Tue Jul 9 09:41:34 EDT 2013

Removed unnecessary xd->mode_info_context assignment

mi is xd->mode_info_context

Change-Id: Ib101be922b695205ec57b5ce1828ba19bde5b41c

--- a/vp9/decoder/vp9_decodemv.c
+++ b/vp9/decoder/vp9_decodemv.c
@@ -482,10 +482,6 @@
 
   int idx, idy;
 
-  // Make sure the MACROBLOCKD mode info pointer is pointed at the
-  // correct entry for the current macroblock.
-  xd->mode_info_context = mi;
-
   // Distance of Mb to the various image edges.
   // These specified to 8th pel as they are always compared to MV values
   // that are in 1/8th pel units
--