Skip to content
Snippets Groups Projects
Commit 903c078b authored by Sebastian Dröge's avatar Sebastian Dröge :tea: Committed by Backport Bot
Browse files

mpegtslivesrc: Drop state mutex before sending buffers/bufferlists downstream

Part-of: <!2129>
parent cbe51c04
No related branches found
No related tags found
1 merge request!2129Backport of "mpegtslivesrc: Use a separate mutex for the properties" into 0.13
Checking pipeline status
......@@ -747,6 +747,8 @@ impl MpegTsLiveSource {
buffer.set_dts(new_pts);
};
drop(state);
gst::ProxyPad::chain_default(pad, Some(&*self.obj()), buffer)
}
......@@ -801,6 +803,8 @@ impl MpegTsLiveSource {
ControlFlow::Continue(Some(buffer))
});
drop(state);
gst::ProxyPad::chain_list_default(pad, Some(&*self.obj()), bufferlist)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment