baseaudioencoder: debug format fixes
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Thu, 28 Apr 2011 10:01:43 +0000 (12:01 +0200)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 27 Aug 2011 13:47:00 +0000 (14:47 +0100)
gst-libs/gst/audio/gstbaseaudioencoder.c

index 76c0886..a907198 100644 (file)
@@ -730,15 +730,14 @@ gst_base_audio_encoder_set_base_gp (GstBaseAudioEncoder * enc)
   if (GST_CLOCK_TIME_IS_VALID (ts)) {
     enc->priv->base_gp =
         GST_CLOCK_TIME_TO_FRAMES (enc->priv->base_ts, enc->ctx->state.rate);
-    GST_DEBUG_OBJECT (enc, "new base gp %" G_GINT64_FORMAT,
-        GST_TIME_ARGS (enc->priv->base_gp));
+    GST_DEBUG_OBJECT (enc, "new base gp %" G_GINT64_FORMAT, enc->priv->base_gp);
   } else {
     /* should reasonably have a valid base,
      * otherwise start at 0 if we did not already start there earlier */
     if (enc->priv->base_gp < 0) {
       enc->priv->base_gp = 0;
       GST_DEBUG_OBJECT (enc, "new base gp %" G_GINT64_FORMAT,
-          GST_TIME_ARGS (enc->priv->base_gp));
+          enc->priv->base_gp);
     }
   }
 }