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>2020-06-25 19:49:07 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-06-25 19:49:07 +0300
commitf62c11f851d357b131d5246153724d616bfc3451 (patch)
tree9904ca49deb4277fd855cfeef22f560166cde5be /video/cdg
parent392bfc0b1e67ec207c0de6a7298e6b735752dcba (diff)
Update for functions returning a Builder being renamed to builder() instead of new()
And new video event APIs.
Diffstat (limited to 'video/cdg')
-rw-r--r--video/cdg/tests/cdgdec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/cdg/tests/cdgdec.rs b/video/cdg/tests/cdgdec.rs
index f8997767d..c43ffa4fd 100644
--- a/video/cdg/tests/cdgdec.rs
+++ b/video/cdg/tests/cdgdec.rs
@@ -64,7 +64,7 @@ fn test_cdgdec() {
let sink = sink.downcast::<gst_app::AppSink>().unwrap();
sink.set_callbacks(
- gst_app::AppSinkCallbacks::new()
+ gst_app::AppSinkCallbacks::builder()
// Add a handler to the "new-sample" signal.
.new_sample(move |appsink| {
// Pull the sample in question out of the appsink's buffer.