vp8: fix some implicit unsigned -> int conversions
authorJames Zern <jzern@google.com>
Sat, 16 Apr 2022 05:23:05 +0000 (22:23 -0700)
committerJames Zern <jzern@google.com>
Sat, 16 Apr 2022 05:32:51 +0000 (22:32 -0700)
commitc8b9bf2b289a5755c0cc1187ebf07e7af75ef37d
treeb927e7742e99984a3ef2eff53f99171f9365c6bf
parent36ea80f3d6949c0542ada34ef608b201c30d35f1
vp8: fix some implicit unsigned -> int conversions

fixes some warnings with clang-13 -fsanitize=integer:
vp8/decoder/threading.c:77:27: runtime error: implicit conversion
from type 'unsigned int' of value 4294967295 (32-bit, unsigned) to type
'int' changed the value to -1 (32-bit, signed)

these bitmask constants were missed in:
1676cddaa vp8: fix some implicit signed -> unsigned conv warnings

Bug: webm:1759
Change-Id: I5d894d08fd41e32b91b56a4d91276837b3415ee4
vp8/decoder/threading.c
vp8/encoder/ethreading.c