shithub: libvpx

Download patch

ref: 7177c3220c65ab0e1b3c96f28d8230ffe06c9137
parent: c533f2a43e102f6cd330834ffdb74575d8382bbf
parent: 446d85e4d7c5109f1d7e14eabf6f2f8761287ece
author: Yaowu Xu <yaowu@google.com>
date: Tue Aug 28 03:03:19 EDT 2012

Merge "silent one more compiler warning"

--- a/vp8/decoder/decodemv.c
+++ b/vp8/decoder/decodemv.c
@@ -644,7 +644,8 @@
 #if CONFIG_ERROR_CONCEALMENT
             /* look for corruption. set mvs_corrupt_from_mb to the current
              * mb_num if the frame is corrupt from this macroblock. */
-            if (vp8dx_bool_error(&pbi->bc) && mb_num < pbi->mvs_corrupt_from_mb)
+            if (vp8dx_bool_error(&pbi->bc) && mb_num <
+                (int)pbi->mvs_corrupt_from_mb)
             {
                 pbi->mvs_corrupt_from_mb = mb_num;
                 /* no need to continue since the partition is corrupt from
--