diff options
Diffstat (limited to 'gst/ivtc')
-rw-r--r-- | gst/ivtc/gstivtc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/ivtc/gstivtc.c b/gst/ivtc/gstivtc.c index a3775378b..13f3c622f 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); } |