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’
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;
}
&& 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);
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;
}