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.
This commit is contained in:
Vincent Penquerc'h 2016-06-23 10:22:35 +01:00
parent 5e752f4eda
commit 528f030eff

View file

@ -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;
}