Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2022-10-19 20:58:43 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-10-20 14:32:31 +0300
commit4942a916a8afb159d652620b05a2c6fd825bea49 (patch)
tree61a84aedb560e404be8cc49725f1a71a18af2692 /net
parent37c0239affda1ce16bc7391ccf94b89803daf58c (diff)
webrtc: Uniformise GType names
Diffstat (limited to 'net')
-rw-r--r--net/webrtc/src/signaller/imp.rs2
-rw-r--r--net/webrtc/src/webrtcsink/imp.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/webrtc/src/signaller/imp.rs b/net/webrtc/src/signaller/imp.rs
index 213b101c7..81e24194a 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 a164cddf6..04ce51ad6 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);