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
path: root/video/cdg
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 /video/cdg
parentdb30cfcc74247dbd9f33899215852d70948e759a (diff)
Update for GstObjectImpl API change
Diffstat (limited to 'video/cdg')
-rw-r--r--video/cdg/src/cdgdec/imp.rs2
-rw-r--r--video/cdg/src/cdgparse/imp.rs2
2 files changed, 4 insertions, 0 deletions
diff --git a/video/cdg/src/cdgdec/imp.rs b/video/cdg/src/cdgdec/imp.rs
index fe80b6cc3..e096b830b 100644
--- a/video/cdg/src/cdgdec/imp.rs
+++ b/video/cdg/src/cdgdec/imp.rs
@@ -36,6 +36,8 @@ impl ObjectSubclass for CdgDec {
impl ObjectImpl for CdgDec {}
+impl GstObjectImpl for CdgDec {}
+
impl ElementImpl for CdgDec {
fn metadata() -> Option<&'static gst::subclass::ElementMetadata> {
static ELEMENT_METADATA: Lazy<gst::subclass::ElementMetadata> = Lazy::new(|| {
diff --git a/video/cdg/src/cdgparse/imp.rs b/video/cdg/src/cdgparse/imp.rs
index 85123c5ee..11cd3fc52 100644
--- a/video/cdg/src/cdgparse/imp.rs
+++ b/video/cdg/src/cdgparse/imp.rs
@@ -43,6 +43,8 @@ impl ObjectSubclass for CdgParse {
impl ObjectImpl for CdgParse {}
+impl GstObjectImpl for CdgParse {}
+
impl ElementImpl for CdgParse {
fn metadata() -> Option<&'static gst::subclass::ElementMetadata> {
static ELEMENT_METADATA: Lazy<gst::subclass::ElementMetadata> = Lazy::new(|| {