vp8: Fix compiler warning in vp8 pickinter.c
authorMarco <marpan@google.com>
Wed, 15 Mar 2017 18:44:07 +0000 (11:44 -0700)
committerMarco <marpan@google.com>
Wed, 15 Mar 2017 18:50:14 +0000 (11:50 -0700)
Change-Id: I0e5714538fe53d885a2201d808846901ae8fc288

vp8/encoder/pickinter.c

index d59bd33..eb713f1 100644 (file)
@@ -207,8 +207,8 @@ int vp8_skip_fractional_mv_step(MACROBLOCK *mb, BLOCK *b, BLOCKD *d,
   (void)mvcost;
   (void)distortion;
   (void)sse;
-  bestmv->as_mv.row <<= 3;
-  bestmv->as_mv.col <<= 3;
+  bestmv->as_mv.row *= 8;
+  bestmv->as_mv.col *= 8;
   return 0;
 }