summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Santos <thiagoss@osg.samsung.com>2014-08-06 12:07:09 -0300
committerThiago Santos <thiagoss@osg.samsung.com>2014-08-08 16:48:37 -0300
commit30b8d8a4be9987f55d3077fd8dbd5db6f2b5d62e (patch)
treeaa299c4918c993ee785111a85d3e7872787b99e2
parent5872a1454ea5e0c2c80b308beb1ed3b689592d93 (diff)
asfdemux: simplify log statement
Use the GST_PTR_FORMAT to print the buffer
-rw-r--r--gst/asfdemux/gstasfdemux.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c
index 52d849de..a6432fcd 100644
--- a/gst/asfdemux/gstasfdemux.c
+++ b/gst/asfdemux/gstasfdemux.c
@@ -1703,11 +1703,8 @@ gst_asf_demux_push_complete_payloads (GstASFDemux * demux, gboolean force)
/* FIXME: we should really set durations on buffers if we can */
- GST_LOG_OBJECT (stream->pad, "pushing buffer, ts=%" GST_TIME_FORMAT
- ", dur=%" GST_TIME_FORMAT " size=%" G_GSIZE_FORMAT,
- GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (payload->buf)),
- GST_TIME_ARGS (GST_BUFFER_DURATION (payload->buf)),
- gst_buffer_get_size (payload->buf));
+ GST_LOG_OBJECT (stream->pad, "pushing buffer, %" GST_PTR_FORMAT,
+ payload->buf);
if (stream->active) {
ret = gst_pad_push (stream->pad, payload->buf);