audioparse: fix a format string as reported on irc.
authorMichael Smith <msmith@songbirdnest.com>
Fri, 11 Dec 2009 18:25:16 +0000 (10:25 -0800)
committerMichael Smith <msmith@songbirdnest.com>
Fri, 11 Dec 2009 18:25:16 +0000 (10:25 -0800)
gst/audioparsers/gstbaseparse.c

index fa506a1b2c77a569ab6d10438b557f4d07f05ae2..909a806cc0e4b6a7076988ad77f205d3a0192be1 100644 (file)
@@ -1656,8 +1656,8 @@ gst_base_parse_set_frame_props (GstBaseParse * parse, guint fps_num,
         gst_util_uint64_scale (GST_SECOND, parse->priv->fps_den,
         parse->priv->fps_num);
   }
-  GST_LOG_OBJECT (parse, "set fps: %d/%d => duration: %d ms", fps_num, fps_den,
-      parse->priv->frame_duration / GST_MSECOND);
+  GST_LOG_OBJECT (parse, "set fps: %d/%d => duration: %" G_GINT64_FORMAT " ms",
+      fps_num, fps_den, parse->priv->frame_duration / GST_MSECOND);
   GST_LOG_OBJECT (parse, "set update interval: %d", interval);
   GST_BASE_PARSE_UNLOCK (parse);
 }