ximagesrc: Fix 'comparison of unsigned expression >= 0 is always true'

This variable can never be below zero anyway.
This commit is contained in:
Sebastian Dröge 2012-03-06 14:22:43 +01:00
parent f2e569cde8
commit 9d5e5ea553

View file

@ -1074,8 +1074,7 @@ gst_ximage_src_get_caps (GstBaseSrc * bs)
if (s->endx >= s->startx && s->endy >= s->starty) {
/* this means user has put in values */
if (s->startx < xcontext->width && s->endx < xcontext->width &&
s->starty < xcontext->height && s->endy < xcontext->height &&
s->startx >= 0 && s->starty >= 0) {
s->starty < xcontext->height && s->endy < xcontext->height) {
/* values are fine */
s->width = width = s->endx - s->startx + 1;
s->height = height = s->endy - s->starty + 1;