From 528f030eff9bc4178b646684f927ed2caf3a5f4f Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 23 Jun 2016 10:22:35 +0100 Subject: [PATCH] oggdemux: demote an expected error to debug Dropping a buffer because we have a seek pending is normal, and will now happen when we trigger a seek while going through the packets in a page. So this should not be an error. --- ext/ogg/gstoggdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index cf65573..f84d0e0 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -4563,7 +4563,7 @@ gst_ogg_demux_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer) drop = (ogg->seek_event_drop_till > 0); GST_PUSH_UNLOCK (ogg); if (drop) { - GST_ERROR_OBJECT (ogg, "Dropping buffer because we have a pending seek"); + GST_DEBUG_OBJECT (ogg, "Dropping buffer because we have a pending seek"); gst_buffer_unref (buffer); return GST_FLOW_OK; } -- 2.7.4