mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
c1cb395f66
commit
44da322083
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue