mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-14 14:21:02 +00:00
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:
parent
e64546598d
commit
746acfc423
1 changed files with 20 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue