From a9d98c57a4dd06996932f98462bed65d0a93b95c Mon Sep 17 00:00:00 2001 From: Adrien Schwartzentruber Date: Thu, 6 Mar 2014 17:49:09 +0000 Subject: [PATCH] pango: demote debug WARNING to LOG for variable framerate video input No need why we need to warn about that, it's perfectly allowed. https://bugzilla.gnome.org/show_bug.cgi?id=725837 --- ext/pango/gstbasetextoverlay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pango/gstbasetextoverlay.c b/ext/pango/gstbasetextoverlay.c index 08a5f94baa..196a128758 100644 --- a/ext/pango/gstbasetextoverlay.c +++ b/ext/pango/gstbasetextoverlay.c @@ -2316,7 +2316,7 @@ gst_base_text_overlay_video_chain (GstPad * pad, GstObject * parent, GST_DEBUG_OBJECT (overlay, "estimating duration based on framerate"); stop = start + gst_util_uint64_scale_int (GST_SECOND, fps_denom, fps_num); } else { - GST_WARNING_OBJECT (overlay, "no duration, assuming minimal duration"); + GST_LOG_OBJECT (overlay, "no duration, assuming minimal duration"); stop = start + 1; /* we need to assume some interval */ } gst_caps_unref (caps);