From 4942a916a8afb159d652620b05a2c6fd825bea49 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 19 Oct 2022 19:58:43 +0200 Subject: [PATCH] webrtc: Uniformise GType names --- docs/plugins/gst_plugins_cache.json | 2 +- net/webrtc/src/signaller/imp.rs | 2 +- net/webrtc/src/webrtcsink/imp.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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);