livesync: Report latency query results when handling latency query too

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1781>
This commit is contained in:
Sebastian Dröge 2024-08-22 10:26:52 +03:00 committed by GStreamer Marge Bot
parent e64546598d
commit 746acfc423

View file

@ -814,9 +814,28 @@ impl LiveSync {
let mut state = self.state.lock();
let latency = state.latency;
let (_live, min, max) = q.result();
let (live, min, max) = q.result();
gst::debug!(
CAT,
imp: self,
"Upstream latency query response: live {} min {} max {}",
live,
min,
max.display()
);
q.set(true, min + latency, max.map(|max| max + latency));
gst::debug!(
CAT,
imp: self,
"Reporting latency: live {} min {} max {}",
live,
min + latency,
max.map(|max| max + latency).display()
);
state.upstream_latency = Some(min);
true
}