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
path: root/utils
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 /utils
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 'utils')
-rw-r--r--utils/fallbackswitch/src/fallbacksrc/custom_source/imp.rs2
-rw-r--r--utils/fallbackswitch/src/fallbacksrc/imp.rs2
-rw-r--r--utils/fallbackswitch/src/fallbackswitch/imp.rs4
-rw-r--r--utils/togglerecord/src/togglerecord/imp.rs2
4 files changed, 5 insertions, 5 deletions
diff --git a/utils/fallbackswitch/src/fallbacksrc/custom_source/imp.rs b/utils/fallbackswitch/src/fallbacksrc/custom_source/imp.rs
index fdbefedd..b0b7cc24 100644
--- a/utils/fallbackswitch/src/fallbacksrc/custom_source/imp.rs
+++ b/utils/fallbackswitch/src/fallbacksrc/custom_source/imp.rs
@@ -49,7 +49,7 @@ pub struct CustomSource {
#[glib::object_subclass]
impl ObjectSubclass for CustomSource {
- const NAME: &'static str = "FallbackSrcCustomSource";
+ const NAME: &'static str = "GstFallbackSrcCustomSource";
type Type = super::CustomSource;
type ParentType = gst::Bin;
}
diff --git a/utils/fallbackswitch/src/fallbacksrc/imp.rs b/utils/fallbackswitch/src/fallbacksrc/imp.rs
index becee9a0..ebb46447 100644
--- a/utils/fallbackswitch/src/fallbacksrc/imp.rs
+++ b/utils/fallbackswitch/src/fallbacksrc/imp.rs
@@ -223,7 +223,7 @@ pub struct FallbackSrc {
#[glib::object_subclass]
impl ObjectSubclass for FallbackSrc {
- const NAME: &'static str = "FallbackSrc";
+ const NAME: &'static str = "GstFallbackSrc";
type Type = super::FallbackSrc;
type ParentType = gst::Bin;
}
diff --git a/utils/fallbackswitch/src/fallbackswitch/imp.rs b/utils/fallbackswitch/src/fallbackswitch/imp.rs
index f9479a5e..8d6c6881 100644
--- a/utils/fallbackswitch/src/fallbackswitch/imp.rs
+++ b/utils/fallbackswitch/src/fallbackswitch/imp.rs
@@ -118,7 +118,7 @@ pub struct FallbackSwitchSinkPad {
#[glib::object_subclass]
impl ObjectSubclass for FallbackSwitchSinkPad {
- const NAME: &'static str = "FallbackSwitchSinkPad";
+ const NAME: &'static str = "GstFallbackSwitchSinkPad";
type Type = super::FallbackSwitchSinkPad;
type ParentType = gst::Pad;
@@ -1036,7 +1036,7 @@ impl FallbackSwitch {
#[glib::object_subclass]
impl ObjectSubclass for FallbackSwitch {
- const NAME: &'static str = "FallbackSwitch";
+ const NAME: &'static str = "GstFallbackSwitch";
type Type = super::FallbackSwitch;
type ParentType = gst::Element;
type Interfaces = (gst::ChildProxy,);
diff --git a/utils/togglerecord/src/togglerecord/imp.rs b/utils/togglerecord/src/togglerecord/imp.rs
index ed9a47bf..24b193a1 100644
--- a/utils/togglerecord/src/togglerecord/imp.rs
+++ b/utils/togglerecord/src/togglerecord/imp.rs
@@ -1699,7 +1699,7 @@ impl ToggleRecord {
#[glib::object_subclass]
impl ObjectSubclass for ToggleRecord {
- const NAME: &'static str = "RsToggleRecord";
+ const NAME: &'static str = "GstToggleRecord";
type Type = super::ToggleRecord;
type ParentType = gst::Element;