ogg: more print fixes
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 3 Dec 2009 21:07:49 +0000 (21:07 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 3 Dec 2009 21:08:42 +0000 (21:08 +0000)
gstoggstream.c:419: error: format ‘%lld’ expects type ‘long long int’, but argument 8 has type ‘gint64’
gstoggdemux.c:2253: error: format ‘%lld’ expects type ‘long long int’, but argument 8 has type ‘GstClockTime’
gstoggdemux.c:2333: error: format ‘%lld’ expects type ‘long long int’, but argument 8 has type ‘GstClockTime’

ext/ogg/gstoggdemux.c
ext/ogg/gstoggstream.c

index 3513516..038c008 100644 (file)
@@ -2250,7 +2250,7 @@ gst_ogg_demux_read_end_chain (GstOggDemux * ogg, GstOggChain * chain)
     chain->segment_stop = GST_CLOCK_TIME_NONE;
   }
 
-  GST_INFO ("segment stop %lld", chain->segment_stop);
+  GST_INFO ("segment stop %" G_GUINT64_FORMAT, chain->segment_stop);
 
   return GST_FLOW_OK;
 }
@@ -2330,7 +2330,7 @@ gst_ogg_demux_collect_chain_info (GstOggDemux * ogg, GstOggChain * chain)
       && chain->segment_start != G_MAXUINT64)
     chain->total_time = chain->segment_stop - chain->segment_start;
 
-  GST_DEBUG ("total time %lld", chain->total_time);
+  GST_DEBUG ("total time %" G_GUINT64_FORMAT, chain->total_time);
 
   GST_DEBUG_OBJECT (ogg, "return %d", res);
 
index 0ba41df..07908a1 100644 (file)
@@ -416,7 +416,7 @@ granulepos_to_granule_dirac (GstOggStream * pad, gint64 gp)
   delay = (gp >> 9) & 0x1fff;
   dt = pt - delay;
 
-  GST_DEBUG ("pt %lld delay %d", pt, delay);
+  GST_DEBUG ("pt %" G_GINT64_FORMAT " delay %d", pt, delay);
 
   return dt + 4;
 }