shithub: libvpx

Download patch

ref: dbce3b770671a4fb2171b67dd4a6ecd1205d6948
parent: fcb59ba0849fb41d112bc1a0368380be9a351829
author: Christian Duvivier <cduvivier@google.com>
date: Mon Aug 13 11:51:04 EDT 2012

Fix warning/bug introduced in 4d5b81a80faa8333ca3a7aed53684d2167fbebd2.

Change-Id: I082d2517022cbf2f472c143fe7772719d8295498

--- a/vp8/decoder/decodemv.c
+++ b/vp8/decoder/decodemv.c
@@ -561,7 +561,7 @@
   const int mis = pbi->common.mode_info_stride;
   MACROBLOCKD *const xd  = & pbi->mb;
 
-  int_mv *const mv = & mbmi->mv;
+  int_mv *const mv = & mbmi->mv[0];
   int mb_to_left_edge;
   int mb_to_right_edge;
   int mb_to_top_edge;
--