mad: Add duration of incoming/outgoing buffers in debug statements
authorEdward Hervey <bilboed@bilboed.com>
Wed, 6 May 2009 11:17:35 +0000 (13:17 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 6 May 2009 11:17:35 +0000 (13:17 +0200)
ext/mad/gstmad.c

index 8aad51854d1067d33063504d8ce9ace920d76165..379f2194176688cd677ee9f853da74797a3d4f47 100644 (file)
@@ -1297,7 +1297,8 @@ gst_mad_chain (GstPad * pad, GstBuffer * buffer)
   discont = GST_BUFFER_IS_DISCONT (buffer);
 
   timestamp = GST_BUFFER_TIMESTAMP (buffer);
-  GST_DEBUG ("mad in timestamp %" GST_TIME_FORMAT, GST_TIME_ARGS (timestamp));
+  GST_DEBUG ("mad in timestamp %" GST_TIME_FORMAT " duration:%" GST_TIME_FORMAT,
+      GST_TIME_ARGS (timestamp), GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)));
 
   /* handle timestamps */
   if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
@@ -1623,8 +1624,9 @@ gst_mad_chain (GstPad * pad, GstBuffer * buffer)
 
         outdata = (gint32 *) GST_BUFFER_DATA (outbuffer);
 
-        GST_DEBUG ("mad out timestamp %" GST_TIME_FORMAT,
-            GST_TIME_ARGS (time_offset));
+        GST_DEBUG ("mad out timestamp %" GST_TIME_FORMAT " dur: %"
+            GST_TIME_FORMAT, GST_TIME_ARGS (time_offset),
+            GST_TIME_ARGS (time_duration));
 
         GST_BUFFER_TIMESTAMP (outbuffer) = time_offset;
         GST_BUFFER_DURATION (outbuffer) = time_duration;