pango: demote debug WARNING to LOG for variable framerate video input
authorAdrien Schwartzentruber <adrien.schwartzentruber@gmail.com>
Thu, 6 Mar 2014 17:49:09 +0000 (17:49 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 6 Mar 2014 17:51:11 +0000 (17:51 +0000)
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

index 08a5f94..196a128 100644 (file)
@@ -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);