mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-03 02:03:48 +00:00
webrtcsink: chain up in signaller ::constructed funcs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2080>
This commit is contained in:
parent
c6ce0bca57
commit
c0b801ce46
1 changed files with 8 additions and 0 deletions
|
@ -5746,6 +5746,8 @@ pub(super) mod aws {
|
|||
|
||||
impl ObjectImpl for AwsKvsWebRTCSink {
|
||||
fn constructed(&self) {
|
||||
self.parent_constructed();
|
||||
|
||||
let element = self.obj();
|
||||
let ws = element
|
||||
.upcast_ref::<crate::webrtcsink::BaseWebRTCSink>()
|
||||
|
@ -5795,6 +5797,8 @@ pub(super) mod whip {
|
|||
|
||||
impl ObjectImpl for WhipWebRTCSink {
|
||||
fn constructed(&self) {
|
||||
self.parent_constructed();
|
||||
|
||||
let element = self.obj();
|
||||
let ws = element
|
||||
.upcast_ref::<crate::webrtcsink::BaseWebRTCSink>()
|
||||
|
@ -5844,6 +5848,8 @@ pub(super) mod livekit {
|
|||
|
||||
impl ObjectImpl for LiveKitWebRTCSink {
|
||||
fn constructed(&self) {
|
||||
self.parent_constructed();
|
||||
|
||||
let element = self.obj();
|
||||
let ws = element
|
||||
.upcast_ref::<crate::webrtcsink::BaseWebRTCSink>()
|
||||
|
@ -5936,6 +5942,8 @@ pub(super) mod janus {
|
|||
#[glib::derived_properties]
|
||||
impl ObjectImpl for JanusVRWebRTCSink {
|
||||
fn constructed(&self) {
|
||||
self.parent_constructed();
|
||||
|
||||
let settings = self.settings.lock().unwrap();
|
||||
let element = self.obj();
|
||||
let ws = element
|
||||
|
|
Loading…
Reference in a new issue