mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
funnel: Improve debug output a bit
This commit is contained in:
parent
94df7f329b
commit
179ba9f182
1 changed files with 8 additions and 4 deletions
|
@ -197,6 +197,9 @@ gst_funnel_request_new_pad (GstElement * element, GstPadTemplate * templ,
|
|||
|
||||
gst_element_add_pad (element, sinkpad);
|
||||
|
||||
GST_DEBUG_OBJECT (element, "requested pad %s:%s",
|
||||
GST_DEBUG_PAD_NAME (sinkpad));
|
||||
|
||||
return sinkpad;
|
||||
}
|
||||
|
||||
|
@ -233,7 +236,7 @@ gst_funnel_release_pad (GstElement * element, GstPad * pad)
|
|||
gboolean got_eos;
|
||||
gboolean send_eos = FALSE;
|
||||
|
||||
GST_DEBUG_OBJECT (funnel, "releasing pad");
|
||||
GST_DEBUG_OBJECT (funnel, "releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
||||
|
||||
gst_pad_set_active (pad, FALSE);
|
||||
|
||||
|
@ -270,8 +273,7 @@ gst_funnel_sink_chain_object (GstPad * pad, GstFunnel * funnel,
|
|||
{
|
||||
GstFlowReturn res;
|
||||
|
||||
GST_DEBUG_OBJECT (funnel, "received buffer%s %p", (is_list ? "list" : ""),
|
||||
obj);
|
||||
GST_DEBUG_OBJECT (pad, "received buffer%s %p", (is_list ? "list" : ""), obj);
|
||||
|
||||
GST_PAD_STREAM_LOCK (funnel->srcpad);
|
||||
|
||||
|
@ -289,7 +291,7 @@ gst_funnel_sink_chain_object (GstPad * pad, GstFunnel * funnel,
|
|||
|
||||
GST_PAD_STREAM_UNLOCK (funnel->srcpad);
|
||||
|
||||
GST_LOG_OBJECT (funnel, "handled buffer%s %s", (is_list ? "list" : ""),
|
||||
GST_LOG_OBJECT (pad, "handled buffer%s %s", (is_list ? "list" : ""),
|
||||
gst_flow_get_name (res));
|
||||
|
||||
return res;
|
||||
|
@ -323,6 +325,8 @@ gst_funnel_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||
gboolean res = TRUE;
|
||||
gboolean unlock = FALSE;
|
||||
|
||||
GST_DEBUG_OBJECT (pad, "received event %" GST_PTR_FORMAT, event);
|
||||
|
||||
if (GST_EVENT_IS_STICKY (event)) {
|
||||
unlock = TRUE;
|
||||
GST_PAD_STREAM_LOCK (funnel->srcpad);
|
||||
|
|
Loading…
Reference in a new issue