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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
parent37c0239affda1ce16bc7391ccf94b89803daf58c (diff)
webrtc: Uniformise GType names
-rw-r--r--docs/plugins/gst_plugins_cache.json2
-rw-r--r--net/webrtc/src/signaller/imp.rs2
-rw-r--r--net/webrtc/src/webrtcsink/imp.rs2
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 <mathieu@centricular.com>",
"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);