vp8/decodeframe: fix signed/unsigned comparison
quiets a visual studio warning Change-Id: Ic7725616bc2cb837e6f79294d4fcff36b67af834
This commit is contained in:
parent
c42d54c3a3
commit
54b2071bf4
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user