mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/: Printf format fixes (#465028).
Original commit message from CVS: * gst/playback/gstqueue2.c: * gst/videorate/gstvideorate.c: Printf format fixes (#465028).
This commit is contained in:
parent
9f9e76bc99
commit
2c9bef0180
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-08-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/playback/gstqueue2.c:
|
||||
* gst/videorate/gstvideorate.c:
|
||||
Printf format fixes (#465028).
|
||||
|
||||
2007-08-09 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
|
||||
|
|
|
@ -592,8 +592,7 @@ apply_segment (GstQueue * queue, GstEvent * event, GstSegment * segment)
|
|||
"received NEWSEGMENT update %d, rate %lf, applied rate %lf, "
|
||||
"format %d, "
|
||||
"%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
|
||||
G_GINT64_FORMAT ", accum %" G_GINT64_FORMAT, update, rate, arate,
|
||||
format, start, stop, time);
|
||||
G_GINT64_FORMAT, update, rate, arate, format, start, stop, time);
|
||||
|
||||
if (format == GST_FORMAT_BYTES) {
|
||||
}
|
||||
|
|
|
@ -557,7 +557,7 @@ gst_video_rate_query (GstPad * pad, GstQuery * query)
|
|||
videorate->from_rate_denominator, videorate->from_rate_numerator);
|
||||
|
||||
GST_DEBUG_OBJECT (videorate, "Our latency: %"
|
||||
GST_TIME_FORMAT, latency);
|
||||
GST_TIME_FORMAT, GST_TIME_ARGS (latency));
|
||||
|
||||
min += latency;
|
||||
if (max != -1)
|
||||
|
|
Loading…
Reference in a new issue