shithub: libvpx

Download patch

ref: 446d85e4d7c5109f1d7e14eabf6f2f8761287ece
parent: c522217d7895369ae1e605b9a13e2d5fcbfc248b
author: Yaowu Xu <yaowu@google.com>
date: Tue Aug 28 02:33:24 EDT 2012

silent one more compiler warning

Change-Id: I621a2bbd5f07691fa76dac36b65f406ad4fed792

--- 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
--