mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
collectpads: Use GST_PTR_FORMAT in debug to output buffer details
Use %GST_PTR_FORMAT instead of %p in debug output so all the buffer details are output
This commit is contained in:
parent
00bcd94723
commit
33e65d9358
1 changed files with 2 additions and 2 deletions
|
@ -939,7 +939,7 @@ gst_collect_pads_peek (GstCollectPads * pads, GstCollectData * data)
|
||||||
if ((result = data->buffer))
|
if ((result = data->buffer))
|
||||||
gst_buffer_ref (result);
|
gst_buffer_ref (result);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (pads, "Peeking at pad %s:%s: buffer=%p",
|
GST_DEBUG_OBJECT (pads, "Peeking at pad %s:%s: buffer=%" GST_PTR_FORMAT,
|
||||||
GST_DEBUG_PAD_NAME (data->pad), result);
|
GST_DEBUG_PAD_NAME (data->pad), result);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
@ -978,7 +978,7 @@ gst_collect_pads_pop (GstCollectPads * pads, GstCollectData * data)
|
||||||
|
|
||||||
GST_COLLECT_PADS_EVT_BROADCAST (pads);
|
GST_COLLECT_PADS_EVT_BROADCAST (pads);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (pads, "Pop buffer on pad %s:%s: buffer=%p",
|
GST_DEBUG_OBJECT (pads, "Pop buffer on pad %s:%s: buffer=%" GST_PTR_FORMAT,
|
||||||
GST_DEBUG_PAD_NAME (data->pad), result);
|
GST_DEBUG_PAD_NAME (data->pad), result);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue