Merge "correct cost for implicit bit in mvs"

This commit is contained in:
John Koleszar 2011-02-09 11:20:12 -08:00 committed by Code Review
commit c2b43164bd

View File

@ -128,7 +128,7 @@ static unsigned int cost_mvcomponent(const int v, const struct mv_context *mvc)
while (--i > 3);
if (x & 240)
if (x & 0xFFF0)
cost += vp8_cost_bit(p [MVPbits + 3], (x >> 3) & 1);
}