deinterlace: fix arithmetic for unsigned comparison

This commit is contained in:
Mark Nauwelaerts 2012-01-20 16:57:52 +01:00
parent a973c0b381
commit 9d771c9bed

View file

@ -1706,8 +1706,8 @@ restart:
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (self->srcpad));
}
g_return_val_if_fail (self->history_count - 1 -
gst_deinterlace_method_get_latency (self->method) >= 0, GST_FLOW_ERROR);
g_return_val_if_fail (self->history_count >=
1 + gst_deinterlace_method_get_latency (self->method), GST_FLOW_ERROR);
buf =
self->field_history[self->history_count - 1 -