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/text/wrap
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 /text/wrap
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 'text/wrap')
-rw-r--r--text/wrap/src/gsttextwrap/imp.rs2
-rw-r--r--text/wrap/tests/textwrap.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/text/wrap/src/gsttextwrap/imp.rs b/text/wrap/src/gsttextwrap/imp.rs
index a6bfaa62..cf779937 100644
--- a/text/wrap/src/gsttextwrap/imp.rs
+++ b/text/wrap/src/gsttextwrap/imp.rs
@@ -395,7 +395,7 @@ impl TextWrap {
#[glib::object_subclass]
impl ObjectSubclass for TextWrap {
- const NAME: &'static str = "RsTextWrap";
+ const NAME: &'static str = "GstTextWrap";
type Type = super::TextWrap;
type ParentType = gst::Element;
diff --git a/text/wrap/tests/textwrap.rs b/text/wrap/tests/textwrap.rs
index 9adf1cc4..ba8d8cb5 100644
--- a/text/wrap/tests/textwrap.rs
+++ b/text/wrap/tests/textwrap.rs
@@ -14,7 +14,7 @@ fn init() {
INIT.call_once(|| {
gst::init().unwrap();
- gstrstextwrap::plugin_register_static().expect("textwrap test");
+ gsttextwrap::plugin_register_static().expect("textwrap test");
});
}