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/utils
diff options
context:
space:
mode:
authorBilal Elmoussaoui <belmouss@redhat.com>2023-07-06 16:27:28 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-07-06 17:50:49 +0300
commit2cc98bf410f687a1779edb86dd259f377cca1c7b (patch)
treedf2485024782e1ad972415a5ae43d807132fa8fe /utils
parent64151790d0a8b1d0594b6740ff43bf85504c32aa (diff)
Adapt to glib::Continue rename
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1268>
Diffstat (limited to 'utils')
-rw-r--r--utils/fallbackswitch/examples/gtk_fallbackswitch.rs8
-rw-r--r--utils/livesync/examples/gtk_livesync.rs2
-rw-r--r--utils/togglerecord/examples/gtk_recording.rs10
-rw-r--r--utils/togglerecord/src/togglerecord/imp.rs28
4 files changed, 24 insertions, 24 deletions
diff --git a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
index 4aaf78dde..f3bd64b6f 100644
--- a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
+++ b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
@@ -110,7 +110,7 @@ fn create_ui(app: &gtk::Application) {
let timeout_id = glib::timeout_add_local(std::time::Duration::from_millis(100), move || {
let video_sink = match video_sink_weak.upgrade() {
Some(video_sink) => video_sink,
- None => return glib::Continue(true),
+ None => return glib::ControlFlow::Continue,
};
let position = video_sink
@@ -118,7 +118,7 @@ fn create_ui(app: &gtk::Application) {
.unwrap_or(gst::ClockTime::ZERO);
position_label.set_text(&format!("Position: {position:.1}"));
- glib::Continue(true)
+ glib::ControlFlow::Continue
});
let video_src_pad_weak = video_src_pad.downgrade();
@@ -160,7 +160,7 @@ fn create_ui(app: &gtk::Application) {
let app = match app_weak.upgrade() {
Some(app) => app,
- None => return glib::Continue(false),
+ None => return glib::ControlFlow::Break,
};
match msg.view() {
@@ -177,7 +177,7 @@ fn create_ui(app: &gtk::Application) {
_ => (),
};
- glib::Continue(true)
+ glib::ControlFlow::Continue
})
.expect("Failed to add bus watch");
diff --git a/utils/livesync/examples/gtk_livesync.rs b/utils/livesync/examples/gtk_livesync.rs
index 19836cd3b..40e09cf6e 100644
--- a/utils/livesync/examples/gtk_livesync.rs
+++ b/utils/livesync/examples/gtk_livesync.rs
@@ -134,7 +134,7 @@ fn create_window(app: &gtk::Application) {
_ => (),
};
- glib::Continue(true)
+ glib::ControlFlow::Continue
})
.unwrap()
};
diff --git a/utils/togglerecord/examples/gtk_recording.rs b/utils/togglerecord/examples/gtk_recording.rs
index 272a2d370..5b2a8d88c 100644
--- a/utils/togglerecord/examples/gtk_recording.rs
+++ b/utils/togglerecord/examples/gtk_recording.rs
@@ -221,12 +221,12 @@ fn create_ui(app: &gtk::Application) {
let timeout_id = glib::timeout_add_local(std::time::Duration::from_millis(100), move || {
let video_sink = match video_sink_weak.upgrade() {
Some(video_sink) => video_sink,
- None => return glib::Continue(true),
+ None => return glib::ControlFlow::Continue,
};
let togglerecord = match togglerecord_weak.upgrade() {
Some(togglerecord) => togglerecord,
- None => return glib::Continue(true),
+ None => return glib::ControlFlow::Continue,
};
let position = video_sink
@@ -241,7 +241,7 @@ fn create_ui(app: &gtk::Application) {
.unwrap_or(gst::ClockTime::ZERO);
recorded_duration_label.set_text(&format!("Recorded: {recording_duration:.1}"));
- glib::Continue(true)
+ glib::ControlFlow::Continue
});
let togglerecord_weak = togglerecord.downgrade();
@@ -290,7 +290,7 @@ fn create_ui(app: &gtk::Application) {
let app = match app_weak.upgrade() {
Some(app) => app,
- None => return glib::Continue(false),
+ None => return glib::ControlFlow::Break,
};
match msg.view() {
@@ -307,7 +307,7 @@ fn create_ui(app: &gtk::Application) {
_ => (),
};
- glib::Continue(true)
+ glib::ControlFlow::Continue
})
.expect("Failed to add bus watch");
diff --git a/utils/togglerecord/src/togglerecord/imp.rs b/utils/togglerecord/src/togglerecord/imp.rs
index 9b66cc153..adbed4b2d 100644
--- a/utils/togglerecord/src/togglerecord/imp.rs
+++ b/utils/togglerecord/src/togglerecord/imp.rs
@@ -856,13 +856,13 @@ impl ToggleRecord {
// Otherwise if we're before the recording start but the end of the buffer is after
// the start and we can clip, clip the buffer and pass it onwards.
gst::debug!(
- CAT,
- obj: pad,
- "Main stream EOS and we're not EOS yet (overlapping recording start, {} < {} < {})",
- current_running_time.display(),
- last_recording_start,
- current_running_time_end.display(),
- );
+ CAT,
+ obj: pad,
+ "Main stream EOS and we're not EOS yet (overlapping recording start, {} < {} < {})",
+ current_running_time.display(),
+ last_recording_start,
+ current_running_time_end.display(),
+ );
let mut clip_start = state
.in_segment
@@ -914,13 +914,13 @@ impl ToggleRecord {
// Similarly if the end is after the recording stop but the start is before and we
// can clip, clip the buffer and pass it through.
gst::debug!(
- CAT,
- obj: pad,
- "Main stream EOS and we're not EOS yet (overlapping recording end, {} < {} < {})",
- current_running_time.display(),
- rec_state.last_recording_stop.display(),
- current_running_time_end.display(),
- );
+ CAT,
+ obj: pad,
+ "Main stream EOS and we're not EOS yet (overlapping recording end, {} < {} < {})",
+ current_running_time.display(),
+ rec_state.last_recording_stop.display(),
+ current_running_time_end.display(),
+ );
let mut clip_start = state
.in_segment