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>2021-03-09 16:51:37 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-03-09 18:07:13 +0300
commit2cada57efc92cb4201d999fd214ad9665313c188 (patch)
tree3b3db433d57732dd23dac095438270aef73411d9 /video/hsv/src
parentaa354058f58ab33ac838ff90e6c8b852b97fd320 (diff)
Update for the subclassing glib/gstreamer bindings API changes
Diffstat (limited to 'video/hsv/src')
-rw-r--r--video/hsv/src/hsvdetector/imp.rs1
-rw-r--r--video/hsv/src/hsvfilter/imp.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/video/hsv/src/hsvdetector/imp.rs b/video/hsv/src/hsvdetector/imp.rs
index 445e0831c..805765d69 100644
--- a/video/hsv/src/hsvdetector/imp.rs
+++ b/video/hsv/src/hsvdetector/imp.rs
@@ -80,7 +80,6 @@ impl ObjectSubclass for HsvDetector {
const NAME: &'static str = "HsvDetector";
type Type = super::HsvDetector;
type ParentType = gst_base::BaseTransform;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for HsvDetector {
diff --git a/video/hsv/src/hsvfilter/imp.rs b/video/hsv/src/hsvfilter/imp.rs
index 210705325..8759f8213 100644
--- a/video/hsv/src/hsvfilter/imp.rs
+++ b/video/hsv/src/hsvfilter/imp.rs
@@ -75,7 +75,6 @@ impl ObjectSubclass for HsvFilter {
const NAME: &'static str = "HsvFilter";
type Type = super::HsvFilter;
type ParentType = gst_base::BaseTransform;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for HsvFilter {