oggdemux: fix a warning in macosx
authorJosep Torra <n770galaxy@gmail.com>
Fri, 9 Oct 2009 14:19:17 +0000 (16:19 +0200)
committerJosep Torra <n770galaxy@gmail.com>
Fri, 9 Oct 2009 14:57:13 +0000 (16:57 +0200)
ext/ogg/gstoggdemux.c

index 88f4ab7..ffe2c25 100644 (file)
@@ -1661,7 +1661,8 @@ gst_ogg_demux_get_next_page (GstOggDemux * ogg, ogg_page * og, gint64 boundary,
       GST_LOG_OBJECT (ogg,
           "got page at %" G_GINT64_FORMAT ", serial %08x, end at %"
           G_GINT64_FORMAT ", granule %" G_GINT64_FORMAT, res_offset,
-          ogg_page_serialno (og), ogg->offset, ogg_page_granulepos (og));
+          ogg_page_serialno (og), ogg->offset,
+          (gint64) ogg_page_granulepos (og));
       break;
     }
   }