compositor: remove check for below zero for unsigned value
authorLuis de Bethencourt <luis@debethencourt.com>
Fri, 28 Aug 2015 14:21:11 +0000 (15:21 +0100)
committerLuis de Bethencourt <luis@debethencourt.com>
Fri, 28 Aug 2015 14:21:13 +0000 (15:21 +0100)
commitbca444ea4a84c39e9989681f892f6e4cb2033cf9
tree779f8b382394bd823bf3d6588a299918abe9f458
parent1e14ceedb38e063e4c5558e8aa28681a57049c13
compositor: remove check for below zero for unsigned value

CLAMP checks both if value is '< 0' and '> max'. Value will never be a negative
number since it is an unsigned integer. Removing that check and only checking if
it is bigger than max by using MIN().

CID 1320707
gst/compositor/compositor.c