livesync: properly format jitter in debug logs

Easier to read that way.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1456>
This commit is contained in:
Guillaume Desmottes 2024-01-16 13:46:34 +01:00 committed by Sebastian Dröge
parent 0e9d33b38b
commit 90342ff90e

View file

@ -1034,7 +1034,13 @@ 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);