vp8: Fix compiler warning in vp8 pickinter.c

Change-Id: I0e5714538fe53d885a2201d808846901ae8fc288
This commit is contained in:
Marco 2017-03-15 11:44:07 -07:00
parent 8440cc4817
commit deea4ede59

View 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;
}