From 5b63a7c8e090123117c03acdffaa3bdcb9ed50c7 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 31 Jul 2013 11:56:39 -0700 Subject: [PATCH] ivtc: quiet FIXME when it's not relevant --- gst/ivtc/gstivtc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/ivtc/gstivtc.c b/gst/ivtc/gstivtc.c index a3775378b5..13f3c622f1 100644 --- a/gst/ivtc/gstivtc.c +++ b/gst/ivtc/gstivtc.c @@ -253,7 +253,9 @@ gst_ivtc_sink_event (GstBaseTransform * trans, GstEvent * event) static void 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); }