summaryrefslogtreecommitdiff
path: root/gst/monoscope
diff options
context:
space:
mode:
authorEdward Hervey <edward@collabora.com>2013-04-26 12:16:49 +0200
committerEdward Hervey <edward@collabora.com>2013-04-26 12:16:49 +0200
commit3e5ad52c0d9b13277ba16608af770de2e3236eda (patch)
treeef80e7b5b6d0b61805d0d1c6891bc0aaf2326341 /gst/monoscope
parent3ec9673dfcd539f57808f20460d3eabbb16b7895 (diff)
monoscope: Fix debug statement
Diffstat (limited to 'gst/monoscope')
-rw-r--r--gst/monoscope/gstmonoscope.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/monoscope/gstmonoscope.c b/gst/monoscope/gstmonoscope.c
index 5788dedfa..4632aa47f 100644
--- a/gst/monoscope/gstmonoscope.c
+++ b/gst/monoscope/gstmonoscope.c
@@ -349,7 +349,8 @@ gst_monoscope_chain (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
if (GST_BUFFER_TIMESTAMP (inbuf) != GST_CLOCK_TIME_NONE)
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_TIME_ARGS (GST_BUFFER_TIMESTAMP (inbuf)));