mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
more logical to log the sending pad, and the pad it is sending to
Original commit message from CVS: more logical to log the sending pad, and the pad it is sending to
This commit is contained in:
parent
fa5a96c7e2
commit
69a9737605
1 changed files with 2 additions and 2 deletions
|
@ -3857,14 +3857,14 @@ gst_pad_push_event (GstPad * pad, GstEvent * event)
|
|||
if (peerpad == NULL)
|
||||
goto not_linked;
|
||||
|
||||
GST_LOG_OBJECT (peerpad, "sending event on peerpad");
|
||||
GST_LOG_OBJECT (pad, "sending event to peerpad %" GST_PTR_FORMAT, peerpad);
|
||||
gst_object_ref (peerpad);
|
||||
GST_OBJECT_UNLOCK (pad);
|
||||
|
||||
result = gst_pad_send_event (peerpad, event);
|
||||
|
||||
GST_LOG_OBJECT (pad, "sent event to peerpad %" GST_PTR_FORMAT, peerpad);
|
||||
gst_object_unref (peerpad);
|
||||
GST_LOG_OBJECT (peerpad, "sent event on peerpad");
|
||||
|
||||
return result;
|
||||
|
||||
|
|
Loading…
Reference in a new issue