diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json index 9819633c..02504ea6 100644 --- a/docs/plugins/gst_plugins_cache.json +++ b/docs/plugins/gst_plugins_cache.json @@ -5436,7 +5436,7 @@ "author": "Mathieu Duponchelle ", "description": "WebRTC sink", "hierarchy": [ - "RsWebRTCSink", + "GstRSWebRTCSink", "GstBin", "GstElement", "GstObject", diff --git a/net/webrtc/src/signaller/imp.rs b/net/webrtc/src/signaller/imp.rs index 213b101c..81e24194 100644 --- a/net/webrtc/src/signaller/imp.rs +++ b/net/webrtc/src/signaller/imp.rs @@ -363,7 +363,7 @@ impl Signaller { #[glib::object_subclass] impl ObjectSubclass for Signaller { - const NAME: &'static str = "RsWebRTCSinkSignaller"; + const NAME: &'static str = "GstRSWebRTCSinkSignaller"; type Type = super::Signaller; type ParentType = glib::Object; } diff --git a/net/webrtc/src/webrtcsink/imp.rs b/net/webrtc/src/webrtcsink/imp.rs index a164cddf..04ce51ad 100644 --- a/net/webrtc/src/webrtcsink/imp.rs +++ b/net/webrtc/src/webrtcsink/imp.rs @@ -2323,7 +2323,7 @@ impl WebRTCSink { #[glib::object_subclass] impl ObjectSubclass for WebRTCSink { - const NAME: &'static str = "RsWebRTCSink"; + const NAME: &'static str = "GstRSWebRTCSink"; type Type = super::WebRTCSink; type ParentType = gst::Bin; type Interfaces = (gst::ChildProxy, gst_video::Navigation);