From 54b2071bf402e34ecc4b29da557f9c6181bf9ab2 Mon Sep 17 00:00:00 2001 From: James Zern Date: Sat, 23 Jul 2016 11:41:52 -0700 Subject: vp8/decodeframe: fix signed/unsigned comparison quiets a visual studio warning Change-Id: Ic7725616bc2cb837e6f79294d4fcff36b67af834 --- vp8/decoder/decodeframe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vp8/decoder/decodeframe.c b/vp8/decoder/decodeframe.c index c76418ef0..0aec2a01b 100644 --- a/vp8/decoder/decodeframe.c +++ b/vp8/decoder/decodeframe.c @@ -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 -- cgit v1.2.3