shithub: libvpx

Download patch

ref: c2b43164bd9a0ba707d639ff786ba975235f791e
parent: a39b5af10bab41ba37835247a81d7bac399ddfd6
parent: 9954d05ca6b9c0cec09ca26ec0d7500148656e19
author: John Koleszar <jkoleszar@google.com>
date: Wed Feb 9 06:20:12 EST 2011

Merge "correct cost for implicit bit in mvs"

--- a/vp8/encoder/encodemv.c
+++ b/vp8/encoder/encodemv.c
@@ -128,7 +128,7 @@
 
         while (--i > 3);
 
-        if (x & 240)
+        if (x & 0xFFF0)
             cost += vp8_cost_bit(p [MVPbits + 3], (x >> 3) & 1);
     }