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:
Diffstat (limited to 'utils/fallbackswitch/examples/gtk_fallbackswitch.rs')
-rw-r--r--utils/fallbackswitch/examples/gtk_fallbackswitch.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
index da8865d98..ead6d9abe 100644
--- a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
+++ b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
@@ -22,10 +22,10 @@ const FALLBACK_PIPELINE: &str = "videotestsrc is-live=true pattern=snow";
fn create_pipeline() -> (gst::Pipeline, gst::Pad, gst::Element) {
let pipeline = gst::Pipeline::default();
- let video_src = gst::parse_bin_from_description(MAIN_PIPELINE, true)
+ let video_src = gst::parse::bin_from_description(MAIN_PIPELINE, true)
.unwrap()
.upcast();
- let fallback_video_src = gst::parse_bin_from_description(FALLBACK_PIPELINE, true)
+ let fallback_video_src = gst::parse::bin_from_description(FALLBACK_PIPELINE, true)
.unwrap()
.upcast();