mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
monoscope: Fix debug statement
This commit is contained in:
parent
3ec9673dfc
commit
3e5ad52c0d
1 changed files with 2 additions and 1 deletions
|
@ -349,7 +349,8 @@ gst_monoscope_chain (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
|
||||||
if (GST_BUFFER_TIMESTAMP (inbuf) != GST_CLOCK_TIME_NONE)
|
if (GST_BUFFER_TIMESTAMP (inbuf) != GST_CLOCK_TIME_NONE)
|
||||||
monoscope->next_ts = GST_BUFFER_TIMESTAMP (inbuf);
|
monoscope->next_ts = GST_BUFFER_TIMESTAMP (inbuf);
|
||||||
|
|
||||||
GST_LOG_OBJECT (monoscope, "in buffer has %d samples, ts=%" GST_TIME_FORMAT,
|
GST_LOG_OBJECT (monoscope,
|
||||||
|
"in buffer has %" G_GSIZE_FORMAT " samples, ts=%" GST_TIME_FORMAT,
|
||||||
gst_buffer_get_size (inbuf) / monoscope->bps,
|
gst_buffer_get_size (inbuf) / monoscope->bps,
|
||||||
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (inbuf)));
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (inbuf)));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue