mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-01 09:13:48 +00:00
livesync: Only resend segment if not in single-segment mode
In single-segment mode, the outgoing segment does not change when the incoming segment changes. We only need to resend the segment if we got flushed or deactivated. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1086>
This commit is contained in:
parent
68bec4a0db
commit
402d96b80c
1 changed files with 3 additions and 1 deletions
|
@ -588,7 +588,9 @@ impl LiveSync {
|
|||
|
||||
let mut state = self.state.lock();
|
||||
state.segment = Some(segment.clone());
|
||||
state.sent_segment = false;
|
||||
if !state.single_segment {
|
||||
state.sent_segment = false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue