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 /video/dav1d
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 'video/dav1d')
-rw-r--r--video/dav1d/src/dav1ddec/imp.rs2
-rw-r--r--video/dav1d/src/dav1ddec/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/video/dav1d/src/dav1ddec/imp.rs b/video/dav1d/src/dav1ddec/imp.rs
index 1fa7ea8a3..cdaabd1d5 100644
--- a/video/dav1d/src/dav1ddec/imp.rs
+++ b/video/dav1d/src/dav1ddec/imp.rs
@@ -475,7 +475,7 @@ fn video_output_formats() -> impl IntoIterator<Item = gst_video::VideoFormat> {
#[glib::object_subclass]
impl ObjectSubclass for Dav1dDec {
- const NAME: &'static str = "RsDav1dDec";
+ const NAME: &'static str = "GstDav1dDec";
type Type = super::Dav1dDec;
type ParentType = gst_video::VideoDecoder;
}
diff --git a/video/dav1d/src/dav1ddec/mod.rs b/video/dav1d/src/dav1ddec/mod.rs
index b439c693b..8d427128b 100644
--- a/video/dav1d/src/dav1ddec/mod.rs
+++ b/video/dav1d/src/dav1ddec/mod.rs
@@ -20,7 +20,7 @@ glib::wrapper! {
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
- "rsdav1ddec",
+ "dav1ddec",
gst::Rank::Primary + 1,
Dav1dDec::static_type(),
)