From: Pascal Massimino Date: Thu, 18 Nov 2010 00:50:02 +0000 (-0800) Subject: remove warning X-Git-Tag: v0.9.6~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed5ab7fa495e1ea030359c316df8b605e61219e0;p=libvpx remove warning was having: "vp8/encoder/onyx_if.c:5365: warning: comparison of unsigned expression >= 0 is always true" --- diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c index cd047ab9b..52d17a30c 100644 --- a/vp8/encoder/onyx_if.c +++ b/vp8/encoder/onyx_if.c @@ -5362,12 +5362,12 @@ int vp8_set_internal_size(VP8_PTR comp, VPX_SCALING horiz_mode, VPX_SCALING vert { VP8_COMP *cpi = (VP8_COMP *) comp; - if (horiz_mode >= NORMAL && horiz_mode <= ONETWO) + if (horiz_mode <= ONETWO) cpi->common.horiz_scale = horiz_mode; else return -1; - if (vert_mode >= NORMAL && vert_mode <= ONETWO) + if (vert_mode <= ONETWO) cpi->common.vert_scale = vert_mode; else return -1;