typefindfunctions: minor cosmetic change

Don't write < 1 when we mean == 0.
This commit is contained in:
Tim-Philipp Müller 2012-02-08 19:34:57 +00:00
parent beacccc396
commit dc08c01935

View file

@ -2451,9 +2451,8 @@ h264_video_type_find (GstTypeFind * tf, gpointer unused)
data_scan_ctx_advance (tf, &c, 1);
}
if (good >= 2 && bad < 1) {
if (good >= 2 && bad == 0) {
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, H264_VIDEO_CAPS);
return;
}
}