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-10-23 11:57:31 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-10-23 12:31:33 +0300
commitb9541b2ca43f8f8904e234199ec3c33f48fede94 (patch)
tree991b27e5c4adbfcfe994babe0afc40874b0a6d9c /tutorial
parentdb30cfcc74247dbd9f33899215852d70948e759a (diff)
Update for GstObjectImpl API change
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/src/identity/imp.rs2
-rw-r--r--tutorial/src/progressbin/imp.rs2
-rw-r--r--tutorial/src/rgb2gray/imp.rs2
-rw-r--r--tutorial/src/sinesrc/imp.rs2
4 files changed, 8 insertions, 0 deletions
diff --git a/tutorial/src/identity/imp.rs b/tutorial/src/identity/imp.rs
index 3e4e17b39..981ce4b9b 100644
--- a/tutorial/src/identity/imp.rs
+++ b/tutorial/src/identity/imp.rs
@@ -196,6 +196,8 @@ impl ObjectImpl for Identity {
}
}
+impl GstObjectImpl for Identity {}
+
// Implementation of gst::Element virtual methods
impl ElementImpl for Identity {
// Set the element specific metadata. This information is what
diff --git a/tutorial/src/progressbin/imp.rs b/tutorial/src/progressbin/imp.rs
index 47bab498d..aebf2f3cf 100644
--- a/tutorial/src/progressbin/imp.rs
+++ b/tutorial/src/progressbin/imp.rs
@@ -159,6 +159,8 @@ impl ObjectImpl for ProgressBin {
}
}
+impl GstObjectImpl for ProgressBin {}
+
// Implementation of gst::Element virtual methods
impl ElementImpl for ProgressBin {
// Set the element specific metadata. This information is what
diff --git a/tutorial/src/rgb2gray/imp.rs b/tutorial/src/rgb2gray/imp.rs
index 431e258c6..b6ba9a3ed 100644
--- a/tutorial/src/rgb2gray/imp.rs
+++ b/tutorial/src/rgb2gray/imp.rs
@@ -174,6 +174,8 @@ impl ObjectImpl for Rgb2Gray {
}
}
+impl GstObjectImpl for Rgb2Gray {}
+
// Implementation of gst::Element virtual methods
impl ElementImpl for Rgb2Gray {
// Set the element specific metadata. This information is what
diff --git a/tutorial/src/sinesrc/imp.rs b/tutorial/src/sinesrc/imp.rs
index bc03ad218..938556a7f 100644
--- a/tutorial/src/sinesrc/imp.rs
+++ b/tutorial/src/sinesrc/imp.rs
@@ -331,6 +331,8 @@ impl ObjectImpl for SineSrc {
}
}
+impl GstObjectImpl for SineSrc {}
+
// Implementation of gst::Element virtual methods
impl ElementImpl for SineSrc {
// Set the element specific metadata. This information is what