audioclock: use GST_STIME_FORMAT for the correct argument

GST_STIME_ARGS is used for time_offset not for last_time.
This fixes the format string accordingly.

https://bugzilla.gnome.org/show_bug.cgi?id=768990
This commit is contained in:
Michael Olbrich 2016-07-20 12:17:57 +02:00 committed by Tim-Philipp Müller
parent c1cb395f66
commit 44da322083

View file

@ -136,8 +136,8 @@ gst_audio_clock_reset (GstAudioClock * clock, GstClockTime time)
clock->time_offset = time_offset;
GST_DEBUG_OBJECT (clock,
"reset clock to %" GST_TIME_FORMAT ", last %" GST_STIME_FORMAT
", offset %" GST_TIME_FORMAT, GST_TIME_ARGS (time),
"reset clock to %" GST_TIME_FORMAT ", last %" GST_TIME_FORMAT
", offset %" GST_STIME_FORMAT, GST_TIME_ARGS (time),
GST_TIME_ARGS (clock->last_time), GST_STIME_ARGS (time_offset));
}