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/tutorial-1.md')
-rw-r--r--tutorial/tutorial-1.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorial/tutorial-1.md b/tutorial/tutorial-1.md
index e70695789..4845ba415 100644
--- a/tutorial/tutorial-1.md
+++ b/tutorial/tutorial-1.md
@@ -206,7 +206,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"rsrgb2gray",
- gst::Rank::None,
+ gst::Rank::NONE,
Rgb2Gray::static_type(),
)
}
@@ -315,7 +315,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"rsrgb2gray",
- gst::Rank::None,
+ gst::Rank::NONE,
Rgb2Gray::static_type(),
)
}