mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
gstpad: Add debug to know what events are transferred between pads
This commit is contained in:
parent
2ba6017363
commit
42fcb1175b
1 changed files with 3 additions and 0 deletions
|
@ -389,6 +389,9 @@ replace_event (GstPad * srcpad, GstPad * sinkpad, guint idx)
|
||||||
}
|
}
|
||||||
if (sinkev->event != event) {
|
if (sinkev->event != event) {
|
||||||
/* put in the pending entry when different */
|
/* put in the pending entry when different */
|
||||||
|
GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, srcpad,
|
||||||
|
"Putting event %p (%s) on pad %s:%s", event,
|
||||||
|
GST_EVENT_TYPE_NAME (event), GST_DEBUG_PAD_NAME (sinkpad));
|
||||||
gst_event_replace (&sinkev->pending, event);
|
gst_event_replace (&sinkev->pending, event);
|
||||||
pending = TRUE;
|
pending = TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue