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>2023-11-02 15:10:59 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-11-02 15:10:59 +0300
commit16b917abb10d92096070392e3765affadc5cde29 (patch)
treeadadbcf111cdc98ecb7e2339c6e3b62471172fef /video/videofx
parent436b6d8efbfa0bffc1d9193dbb3ffb0c1be4d718 (diff)
Update for `gst::Rank` API changes
Diffstat (limited to 'video/videofx')
-rw-r--r--video/videofx/src/border/mod.rs2
-rw-r--r--video/videofx/src/colordetect/mod.rs2
-rw-r--r--video/videofx/src/videocompare/mod.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/video/videofx/src/border/mod.rs b/video/videofx/src/border/mod.rs
index d81fcfa80..253adcbc9 100644
--- a/video/videofx/src/border/mod.rs
+++ b/video/videofx/src/border/mod.rs
@@ -20,7 +20,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"roundedcorners",
- gst::Rank::None,
+ gst::Rank::NONE,
RoundedCorners::static_type(),
)
}
diff --git a/video/videofx/src/colordetect/mod.rs b/video/videofx/src/colordetect/mod.rs
index 385c00888..689fa3572 100644
--- a/video/videofx/src/colordetect/mod.rs
+++ b/video/videofx/src/colordetect/mod.rs
@@ -20,7 +20,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"colordetect",
- gst::Rank::None,
+ gst::Rank::NONE,
ColorDetect::static_type(),
)
}
diff --git a/video/videofx/src/videocompare/mod.rs b/video/videofx/src/videocompare/mod.rs
index a31493ace..bfbbef378 100644
--- a/video/videofx/src/videocompare/mod.rs
+++ b/video/videofx/src/videocompare/mod.rs
@@ -49,7 +49,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"videocompare",
- gst::Rank::None,
+ gst::Rank::NONE,
VideoCompare::static_type(),
)
}