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:
Diffstat (limited to 'tutorial/src/identity/mod.rs')
-rw-r--r--tutorial/src/identity/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/src/identity/mod.rs b/tutorial/src/identity/mod.rs
index 6ff031999..4e4a7da43 100644
--- a/tutorial/src/identity/mod.rs
+++ b/tutorial/src/identity/mod.rs
@@ -25,7 +25,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"rsidentity",
- gst::Rank::None,
+ gst::Rank::NONE,
Identity::static_type(),
)
}