mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
oggdemux: don't use GST_ERROR() for debug messages
Fix https://bugzilla.gnome.org/show_bug.cgi?id=746457
This commit is contained in:
parent
bd2a86e353
commit
452d7b04e3
1 changed files with 2 additions and 2 deletions
|
@ -4816,7 +4816,7 @@ gst_ogg_demux_loop_push (GstOggDemux * ogg)
|
|||
if (!event)
|
||||
continue;
|
||||
|
||||
GST_ERROR ("Pushing event %" GST_PTR_FORMAT, event);
|
||||
GST_DEBUG_OBJECT (ogg->sinkpad, "Pushing event %" GST_PTR_FORMAT, event);
|
||||
if (!gst_pad_push_event (ogg->sinkpad, event)) {
|
||||
GST_WARNING_OBJECT (ogg, "Failed to push event");
|
||||
GST_PUSH_LOCK (ogg);
|
||||
|
@ -4826,7 +4826,7 @@ gst_ogg_demux_loop_push (GstOggDemux * ogg)
|
|||
}
|
||||
GST_PUSH_UNLOCK (ogg);
|
||||
} else {
|
||||
GST_ERROR ("Pushed event ok");
|
||||
GST_DEBUG_OBJECT (ogg->sinkpad, "Pushed event ok");
|
||||
}
|
||||
}
|
||||
gst_object_unref (ogg);
|
||||
|
|
Loading…
Reference in a new issue