ivtc: quiet FIXME when it's not relevant

This commit is contained in:
David Schleef 2013-07-31 11:56:39 -07:00
parent d5f1ddad85
commit 5b63a7c8e0

View file

@ -253,7 +253,9 @@ gst_ivtc_sink_event (GstBaseTransform * trans, GstEvent * event)
static void static void
gst_ivtc_flush (GstIvtc * ivtc) gst_ivtc_flush (GstIvtc * ivtc)
{ {
GST_FIXME_OBJECT (ivtc, "not sending flushed fields to srcpad"); if (ivtc->n_fields > 0) {
GST_FIXME_OBJECT (ivtc, "not sending flushed fields to srcpad");
}
gst_ivtc_retire_fields (ivtc, ivtc->n_fields); gst_ivtc_retire_fields (ivtc, ivtc->n_fields);
} }