qtdemux: fix debug message printf args
authorThiago Santos <thiago.sousa.santos@collabora.co.uk>
Thu, 3 Dec 2009 20:49:55 +0000 (17:49 -0300)
committerThiago Santos <thiago.sousa.santos@collabora.co.uk>
Thu, 3 Dec 2009 20:49:55 +0000 (17:49 -0300)
Fixes debug message printf format to make it build in mac's gcc

gst/qtdemux/qtdemux.c

index dd722ff68d874ee0571f1576f1e7d08dccbab430..9849af3e7009ed31bd6d692b1c4d024fbc3081aa 100644 (file)
@@ -4234,8 +4234,8 @@ done2:
             gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
         stream->stts_duration =
             gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
-        GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %u ", i,
-            stream->stts_samples, stream->stts_duration);
+        GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %"
+            G_GUINT64_FORMAT, i, stream->stts_samples, stream->stts_duration);
 
         /* take first duration for fps */
         if (G_UNLIKELY (stream->min_duration == 0))