mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
resindvd: use GST_STIME_FORMAT for GstClockTimeDiff
No need to use G_GINT64_FORMAT for potentially negative values of GstClockTimeDiff. Since 1.6 these can be handled with GST_STIME_FORMAT. Plus it creates more readable values in the logs. https://bugzilla.gnome.org/show_bug.cgi?id=757480
This commit is contained in:
parent
e7515971a8
commit
5a4c09f791
1 changed files with 2 additions and 2 deletions
|
@ -969,9 +969,9 @@ rsn_dvdsrc_step (resinDvdSrc * src, gboolean have_dvd_lock)
|
|||
}
|
||||
|
||||
GST_LOG_OBJECT (src, "NAV packet start TS %" GST_TIME_FORMAT
|
||||
" end TS %" GST_TIME_FORMAT " base %" G_GINT64_FORMAT " %s",
|
||||
" end TS %" GST_TIME_FORMAT " base %" GST_STIME_FORMAT " %s",
|
||||
GST_TIME_ARGS (new_start_ptm), GST_TIME_ARGS (new_end_ptm),
|
||||
new_base_time, discont ? "discont" : "");
|
||||
GST_STIME_ARGS (new_base_time), discont ? "discont" : "");
|
||||
|
||||
#if 0
|
||||
g_print ("NAV packet start TS %" GST_TIME_FORMAT
|
||||
|
|
Loading…
Reference in a new issue