mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
Plug a memory leak in a debug message.
This commit is contained in:
parent
5f642f38bd
commit
ceb175f087
1 changed files with 2 additions and 2 deletions
|
@ -522,8 +522,8 @@ gst_multipart_demux_chain (GstPad * pad, GstBuffer * buf)
|
||||||
GST_DEBUG_OBJECT (multipart,
|
GST_DEBUG_OBJECT (multipart,
|
||||||
"pushing buffer with timestamp %" GST_TIME_FORMAT,
|
"pushing buffer with timestamp %" GST_TIME_FORMAT,
|
||||||
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
|
||||||
GST_DEBUG_OBJECT (multipart, "buffer has caps %s",
|
GST_DEBUG_OBJECT (multipart, "buffer has caps %" GST_PTR_FORMAT,
|
||||||
gst_caps_to_string (GST_BUFFER_CAPS (outbuf)));
|
GST_BUFFER_CAPS (outbuf));
|
||||||
res = gst_pad_push (srcpad->pad, outbuf);
|
res = gst_pad_push (srcpad->pad, outbuf);
|
||||||
if (res != GST_FLOW_OK)
|
if (res != GST_FLOW_OK)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue