Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/livesync/src/livesync/imp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/livesync/src/livesync/imp.rs b/utils/livesync/src/livesync/imp.rs
index 3a2614618..a6b9f9ebe 100644
--- a/utils/livesync/src/livesync/imp.rs
+++ b/utils/livesync/src/livesync/imp.rs
@@ -1022,8 +1022,8 @@ impl LiveSync {
clock_id.time(),
);
- let (res, _) = MutexGuard::unlocked(&mut state, || clock_id.wait());
- gst::trace!(CAT, imp: self, "Clock returned {res:?}",);
+ let (res, jitter) = MutexGuard::unlocked(&mut state, || clock_id.wait());
+ gst::trace!(CAT, imp: self, "Clock returned {res:?} {jitter}",);
if res == Err(gst::ClockError::Unscheduled) {
return Err(gst::FlowError::Flushing);