basertppay: don't print RTP timestamps as clocktime
authorWim Taymans <wim.taymans@collabora.co.uk>
Thu, 10 Sep 2009 16:19:36 +0000 (18:19 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Thu, 10 Sep 2009 16:21:08 +0000 (18:21 +0200)
Don't try to print the RTP timestamp as a GstClockTime, it's just a guint32.

Fixes #594757

gst-libs/gst/rtp/gstbasertppayload.c

index afeff4c..a3b603c 100644 (file)
@@ -730,8 +730,7 @@ gst_basertppayload_prepare_push (GstBaseRTPPayload * payload,
     data.rtptime = payload->ts_base + rtime;
   } else {
     GST_LOG_OBJECT (payload,
-        "Using previous timestamp %" GST_TIME_FORMAT " for RTP timestamp",
-        GST_TIME_ARGS (payload->timestamp));
+        "Using previous RTP timestamp %" G_GUINT32_FORMAT, payload->timestamp);
     /* no timestamp to convert, take previous timestamp */
     data.rtptime = payload->timestamp;
   }