]> granicus.if.org Git - libvpx/commit
vp9: address integer sanitizer warning
authorJohann <johannkoenig@google.com>
Fri, 3 Aug 2018 22:36:59 +0000 (15:36 -0700)
committerJohann <johannkoenig@google.com>
Mon, 6 Aug 2018 22:55:07 +0000 (15:55 -0700)
commita532c243bb2b5bb0fd0ef295eb019518cc532ca5
tree5e70b33c7f56d888cac22db9458e33842d7fdbaf
parente1acea5a2843deb8628e9211ae2ff40cdc1818e7
vp9: address integer sanitizer warning

Comparing the size values with subtraction requires casting. Sort in
descending order.

(a < b) - (a > b)
If a is greater, this is 0 - 1 = -1
If the  values are equal, this is 0 - 0 = 0
If b is greater, this is 1 - 0 = 1

Change-Id: I5c20fd10fbc97c391c6858235c44d25d7db57f0e
vp9/decoder/vp9_decodeframe.c