vp8/decodeframe: fix signed/unsigned comparison
authorJames Zern <jzern@google.com>
Sat, 23 Jul 2016 18:41:52 +0000 (11:41 -0700)
committerJames Zern <jzern@google.com>
Sat, 23 Jul 2016 18:41:52 +0000 (11:41 -0700)
quiets a visual studio warning

Change-Id: Ic7725616bc2cb837e6f79294d4fcff36b67af834

vp8/decoder/decodeframe.c

index c76418e..0aec2a0 100644 (file)
@@ -798,7 +798,8 @@ static void setup_token_decoder(VP8D_COMP *pbi,
   if (pbi->decoding_thread_count > num_token_partitions - 1) {
     pbi->decoding_thread_count = num_token_partitions - 1;
   }
-  if (pbi->decoding_thread_count > pbi->common.mb_rows - 1) {
+  if ((int)pbi->decoding_thread_count > pbi->common.mb_rows - 1) {
+    assert(pbi->common.mb_rows > 0);
     pbi->decoding_thread_count = pbi->common.mb_rows - 1;
   }
 #endif