add buffer logging
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 14 Mar 2007 15:05:32 +0000 (15:05 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 11 Sep 2012 00:54:31 +0000 (01:54 +0100)
Original commit message from CVS:
add buffer logging

gst/gdp/gstgdpdepay.c

index 98d584c..3fab801 100644 (file)
@@ -312,6 +312,13 @@ gst_gdp_depay_chain (GstPad * pad, GstBuffer * buffer)
 
         /* set caps and push */
         gst_buffer_set_caps (buf, this->caps);
+        GST_LOG_OBJECT (this, "pushing buffer %p, timestamp %"
+            GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT
+            ", offset %" G_GINT64_FORMAT ", offset_end %" G_GINT64_FORMAT,
+            buf,
+            GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)),
+            GST_TIME_ARGS (GST_BUFFER_DURATION (buf)),
+            GST_BUFFER_OFFSET (buf), GST_BUFFER_OFFSET_END (buf));
         ret = gst_pad_push (this->srcpad, buf);
         if (ret != GST_FLOW_OK)
           goto push_error;