mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/asfdemux/gstasfdemux.c: Printf format fixes.
Original commit message from CVS: * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event), (gst_asf_demux_pull_indices): Printf format fixes.
This commit is contained in:
parent
b2ba2f9e0a
commit
9ff45f3d88
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-04-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event),
|
||||||
|
(gst_asf_demux_pull_indices):
|
||||||
|
Printf format fixes.
|
||||||
|
|
||||||
2007-04-16 Tim-Philipp Müller <tim at centricular dot net>
|
2007-04-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
|
* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
|
||||||
|
|
|
@ -456,7 +456,7 @@ gst_asf_demux_handle_seek_event (GstASFDemux * demux, GstEvent * event)
|
||||||
packet = demux->num_packets;
|
packet = demux->num_packets;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (demux, "seeking to packet %" G_GINT64_FORMAT, packet);
|
GST_DEBUG_OBJECT (demux, "seeking to packet %u", packet);
|
||||||
|
|
||||||
GST_OBJECT_LOCK (demux);
|
GST_OBJECT_LOCK (demux);
|
||||||
demux->segment = segment;
|
demux->segment = segment;
|
||||||
|
@ -773,7 +773,7 @@ gst_asf_demux_pull_indices (GstASFDemux * demux)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
GST_LOG_OBJECT (demux, "index object at offset 0x%" G_GINT64_MODIFIER "X"
|
GST_LOG_OBJECT (demux, "index object at offset 0x%" G_GINT64_MODIFIER "X"
|
||||||
", size %u", offset, obj.size);
|
", size %u", offset, (guint) obj.size);
|
||||||
|
|
||||||
offset += obj.size; /* increase before _process_object changes it */
|
offset += obj.size; /* increase before _process_object changes it */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue