mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 23:01:02 +00:00
livesync: properly format jitter in debug logs
Easier to read that way. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1457>
This commit is contained in:
parent
bd0c6690e0
commit
ddc15b92a5
1 changed files with 3 additions and 1 deletions
|
@ -1020,7 +1020,9 @@ impl LiveSync {
|
|||
);
|
||||
|
||||
let (res, jitter) = MutexGuard::unlocked(&mut state, || clock_id.wait());
|
||||
gst::trace!(CAT, imp: self, "Clock returned {res:?} {jitter}",);
|
||||
gst::trace!(CAT, imp: self, "Clock returned {res:?} {}{}",
|
||||
if jitter.is_negative() {"-"} else {""},
|
||||
gst::ClockTime::from_nseconds(jitter.unsigned_abs()));
|
||||
|
||||
if res == Err(gst::ClockError::Unscheduled) {
|
||||
return Err(gst::FlowError::Flushing);
|
||||
|
|
Loading…
Reference in a new issue