asfdemux: fix warning in macosx snow leopard

This commit is contained in:
Josep Torra 2009-10-11 16:06:25 +02:00
parent 0b0b07eb49
commit c4fe899f1a

View file

@ -620,9 +620,10 @@ gst_asf_demux_handle_seek_event (GstASFDemux * demux, GstEvent * event)
&dest_format, &offset) && dest_format == GST_FORMAT_BYTES) {
packet = (offset - demux->data_offset) / demux->packet_size;
GST_LOG_OBJECT (demux, "convert %" GST_TIME_FORMAT
" to bytes query result: %lld, data_ofset: %llu, packet_size: %u,"
" resulting packet: %u\n", GST_TIME_ARGS (seek_time), offset,
demux->data_offset, demux->packet_size, packet);
" to bytes query result: %" G_GINT64_FORMAT ", data_ofset: %"
G_GINT64_FORMAT ", packet_size: %u," " resulting packet: %u\n",
GST_TIME_ARGS (seek_time), offset, demux->data_offset,
demux->packet_size, packet);
} else {
/* Hackety hack, this sucks. We just seek to an earlier position
* and let the sinks throw away the stuff before the segment start */