mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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:
parent
5e752f4eda
commit
528f030eff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue