mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-18 16:16:28 +00:00
togglerecord: release rec_state before pushing buffer
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1961>
This commit is contained in:
parent
6ee745edee
commit
80b9d7081a
1 changed files with 2 additions and 2 deletions
|
@ -1351,8 +1351,6 @@ impl ToggleRecord {
|
||||||
self.handle_main_stream(pad, &stream, buffer, upstream_live)
|
self.handle_main_stream(pad, &stream, buffer, upstream_live)
|
||||||
}?;
|
}?;
|
||||||
|
|
||||||
let rec_state = self.state.lock();
|
|
||||||
|
|
||||||
let mut buffer = match handle_result {
|
let mut buffer = match handle_result {
|
||||||
HandleResult::Drop => {
|
HandleResult::Drop => {
|
||||||
return Ok(gst::FlowSuccess::Ok);
|
return Ok(gst::FlowSuccess::Ok);
|
||||||
|
@ -1377,6 +1375,7 @@ impl ToggleRecord {
|
||||||
};
|
};
|
||||||
|
|
||||||
let out_running_time = {
|
let out_running_time = {
|
||||||
|
let rec_state = self.state.lock();
|
||||||
let main_state = if stream != self.main_stream {
|
let main_state = if stream != self.main_stream {
|
||||||
Some(self.main_stream.state.lock())
|
Some(self.main_stream.state.lock())
|
||||||
} else {
|
} else {
|
||||||
|
@ -1427,6 +1426,7 @@ impl ToggleRecord {
|
||||||
let out_running_time = state.out_segment.to_running_time(buffer.pts());
|
let out_running_time = state.out_segment.to_running_time(buffer.pts());
|
||||||
|
|
||||||
// Unlock before pushing
|
// Unlock before pushing
|
||||||
|
drop(rec_state);
|
||||||
drop(state);
|
drop(state);
|
||||||
drop(main_state);
|
drop(main_state);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue