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:
authorFrançois Laignel <fengalin@free.fr>2019-02-13 13:31:39 +0300
committerFrançois Laignel <fengalin@free.fr>2019-02-13 13:53:46 +0300
commit186ee43f8e33dbba79dccb0e2e1875968a6c7774 (patch)
tree1a9a067fb0e441367a22b78f7f80770014435b66
parent09d7555653035494827d998859076d3a256077b7 (diff)
Fix call parent from Ext trait
See https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/merge_requests/231
-rw-r--r--gst-plugin-tutorial/src/sinesrc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-plugin-tutorial/src/sinesrc.rs b/gst-plugin-tutorial/src/sinesrc.rs
index c004fe270..94db3f75b 100644
--- a/gst-plugin-tutorial/src/sinesrc.rs
+++ b/gst-plugin-tutorial/src/sinesrc.rs
@@ -540,7 +540,7 @@ impl BaseSrcImpl for SineSrc {
}
_ => (),
}
- BaseSrcImpl::parent_query(self, element, query)
+ BaseSrcImplExt::parent_query(self, element, query)
}
// Creates the audio buffers