mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
ogg: more print fixes
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’
This commit is contained in:
parent
098e416ebc
commit
2752ae841e
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue