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
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 18:42:58 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 20:46:08 +0300
commitf045099fc135d54a74b7a918e8ffcce5352ad3a7 (patch)
tree3ec9ec3beb0bdafb8b16fbf106c89354c5a0c3ea /generic
parent211cd095d69726a3a2208feddd921d05b60c6540 (diff)
Fix GObject type names, GStreamer debug category names and element factory names
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/198
Diffstat (limited to 'generic')
-rw-r--r--generic/file/src/filesink/imp.rs2
-rw-r--r--generic/file/src/filesrc/imp.rs2
-rw-r--r--generic/sodium/src/decrypter/imp.rs2
-rw-r--r--generic/sodium/src/encrypter/imp.rs2
-rw-r--r--generic/threadshare/src/appsrc/imp.rs2
-rw-r--r--generic/threadshare/src/inputselector/imp.rs2
-rw-r--r--generic/threadshare/src/jitterbuffer/imp.rs2
-rw-r--r--generic/threadshare/src/proxy/imp.rs4
-rw-r--r--generic/threadshare/src/queue/imp.rs2
-rw-r--r--generic/threadshare/src/tcpclientsrc/imp.rs2
-rw-r--r--generic/threadshare/src/udpsink/imp.rs2
-rw-r--r--generic/threadshare/src/udpsrc/imp.rs2
12 files changed, 13 insertions, 13 deletions
diff --git a/generic/file/src/filesink/imp.rs b/generic/file/src/filesink/imp.rs
index 437b1370b..8d31dcbad 100644
--- a/generic/file/src/filesink/imp.rs
+++ b/generic/file/src/filesink/imp.rs
@@ -105,7 +105,7 @@ impl FileSink {
#[glib::object_subclass]
impl ObjectSubclass for FileSink {
- const NAME: &'static str = "RsFileSink";
+ const NAME: &'static str = "GstRsFileSink";
type Type = super::FileSink;
type ParentType = gst_base::BaseSink;
type Interfaces = (gst::URIHandler,);
diff --git a/generic/file/src/filesrc/imp.rs b/generic/file/src/filesrc/imp.rs
index be08200db..471e0e8e4 100644
--- a/generic/file/src/filesrc/imp.rs
+++ b/generic/file/src/filesrc/imp.rs
@@ -119,7 +119,7 @@ impl FileSrc {
#[glib::object_subclass]
impl ObjectSubclass for FileSrc {
- const NAME: &'static str = "RsFileSrc";
+ const NAME: &'static str = "GstRsFileSrc";
type Type = super::FileSrc;
type ParentType = gst_base::BaseSrc;
type Interfaces = (gst::URIHandler,);
diff --git a/generic/sodium/src/decrypter/imp.rs b/generic/sodium/src/decrypter/imp.rs
index ce9d638e5..d581970a5 100644
--- a/generic/sodium/src/decrypter/imp.rs
+++ b/generic/sodium/src/decrypter/imp.rs
@@ -522,7 +522,7 @@ impl Decrypter {
#[glib::object_subclass]
impl ObjectSubclass for Decrypter {
- const NAME: &'static str = "RsSodiumDecryptor";
+ const NAME: &'static str = "GstSodiumDecryptor";
type Type = super::Decrypter;
type ParentType = gst::Element;
diff --git a/generic/sodium/src/encrypter/imp.rs b/generic/sodium/src/encrypter/imp.rs
index fd121c2e6..a6a96dd4c 100644
--- a/generic/sodium/src/encrypter/imp.rs
+++ b/generic/sodium/src/encrypter/imp.rs
@@ -325,7 +325,7 @@ impl Encrypter {
#[glib::object_subclass]
impl ObjectSubclass for Encrypter {
- const NAME: &'static str = "RsSodiumEncrypter";
+ const NAME: &'static str = "GstSodiumEncrypter";
type Type = super::Encrypter;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/appsrc/imp.rs b/generic/threadshare/src/appsrc/imp.rs
index b5636e08d..a6dd62c9e 100644
--- a/generic/threadshare/src/appsrc/imp.rs
+++ b/generic/threadshare/src/appsrc/imp.rs
@@ -425,7 +425,7 @@ impl AppSrc {
#[glib::object_subclass]
impl ObjectSubclass for AppSrc {
- const NAME: &'static str = "RsTsAppSrc";
+ const NAME: &'static str = "GstTsAppSrc";
type Type = super::AppSrc;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/inputselector/imp.rs b/generic/threadshare/src/inputselector/imp.rs
index c3e005ee6..2f2523319 100644
--- a/generic/threadshare/src/inputselector/imp.rs
+++ b/generic/threadshare/src/inputselector/imp.rs
@@ -353,7 +353,7 @@ impl InputSelector {
#[glib::object_subclass]
impl ObjectSubclass for InputSelector {
- const NAME: &'static str = "RsTsInputSelector";
+ const NAME: &'static str = "GstTsInputSelector";
type Type = super::InputSelector;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/jitterbuffer/imp.rs b/generic/threadshare/src/jitterbuffer/imp.rs
index 44cd903bc..b736aa98d 100644
--- a/generic/threadshare/src/jitterbuffer/imp.rs
+++ b/generic/threadshare/src/jitterbuffer/imp.rs
@@ -1299,7 +1299,7 @@ impl JitterBuffer {
#[glib::object_subclass]
impl ObjectSubclass for JitterBuffer {
- const NAME: &'static str = "RsTsJitterBuffer";
+ const NAME: &'static str = "GstTsJitterBuffer";
type Type = super::JitterBuffer;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/proxy/imp.rs b/generic/threadshare/src/proxy/imp.rs
index 862e0730a..0003dc0ef 100644
--- a/generic/threadshare/src/proxy/imp.rs
+++ b/generic/threadshare/src/proxy/imp.rs
@@ -535,7 +535,7 @@ impl ProxySink {
#[glib::object_subclass]
impl ObjectSubclass for ProxySink {
- const NAME: &'static str = "RsTsProxySink";
+ const NAME: &'static str = "GstTsProxySink";
type Type = super::ProxySink;
type ParentType = gst::Element;
@@ -1041,7 +1041,7 @@ impl ProxySrc {
#[glib::object_subclass]
impl ObjectSubclass for ProxySrc {
- const NAME: &'static str = "RsTsProxySrc";
+ const NAME: &'static str = "GstTsProxySrc";
type Type = super::ProxySrc;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/queue/imp.rs b/generic/threadshare/src/queue/imp.rs
index 93ba22e1c..53e933330 100644
--- a/generic/threadshare/src/queue/imp.rs
+++ b/generic/threadshare/src/queue/imp.rs
@@ -627,7 +627,7 @@ impl Queue {
#[glib::object_subclass]
impl ObjectSubclass for Queue {
- const NAME: &'static str = "RsTsQueue";
+ const NAME: &'static str = "GstTsQueue";
type Type = super::Queue;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/tcpclientsrc/imp.rs b/generic/threadshare/src/tcpclientsrc/imp.rs
index f616407d3..ad57b8119 100644
--- a/generic/threadshare/src/tcpclientsrc/imp.rs
+++ b/generic/threadshare/src/tcpclientsrc/imp.rs
@@ -477,7 +477,7 @@ impl TcpClientSrc {
#[glib::object_subclass]
impl ObjectSubclass for TcpClientSrc {
- const NAME: &'static str = "RsTsTcpClientSrc";
+ const NAME: &'static str = "GstTsTcpClientSrc";
type Type = super::TcpClientSrc;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/udpsink/imp.rs b/generic/threadshare/src/udpsink/imp.rs
index efb0da6ed..33a0a3f0c 100644
--- a/generic/threadshare/src/udpsink/imp.rs
+++ b/generic/threadshare/src/udpsink/imp.rs
@@ -924,7 +924,7 @@ fn try_into_socket_addr(imp: &UdpSink, host: &str, port: i32) -> Result<SocketAd
#[glib::object_subclass]
impl ObjectSubclass for UdpSink {
- const NAME: &'static str = "RsTsUdpSink";
+ const NAME: &'static str = "GstTsUdpSink";
type Type = super::UdpSink;
type ParentType = gst::Element;
diff --git a/generic/threadshare/src/udpsrc/imp.rs b/generic/threadshare/src/udpsrc/imp.rs
index f6105d0b8..621244a18 100644
--- a/generic/threadshare/src/udpsrc/imp.rs
+++ b/generic/threadshare/src/udpsrc/imp.rs
@@ -613,7 +613,7 @@ impl UdpSrc {
#[glib::object_subclass]
impl ObjectSubclass for UdpSrc {
- const NAME: &'static str = "RsTsUdpSrc";
+ const NAME: &'static str = "GstTsUdpSrc";
type Type = super::UdpSrc;
type ParentType = gst::Element;