Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-11-21 19:15:04 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-11-21 19:15:04 +0300
commitc68f6b2631d3498dfd89032c36fc2d52ae1e5ec2 (patch)
tree26b7c4bba76ec4dc2d6285a1558bb503e7e2ce3e /net
parent55aad51141907ea7834eb0cbcdf6f92e3fdce5d1 (diff)
Update for GLib signal `emit_by_name()` API changes
Diffstat (limited to 'net')
-rw-r--r--net/hlssink3/src/imp.rs32
1 files changed, 16 insertions, 16 deletions
diff --git a/net/hlssink3/src/imp.rs b/net/hlssink3/src/imp.rs
index 4f3440dc..a2c8dcab 100644
--- a/net/hlssink3/src/imp.rs
+++ b/net/hlssink3/src/imp.rs
@@ -162,10 +162,11 @@ impl HlsSink3 {
state.current_segment_location = Some(segment_file_location.clone());
let fragment_stream = element
- .emit_by_name(SIGNAL_GET_FRAGMENT_STREAM, &[&segment_file_location])
- .expect("Error while getting fragment stream")
- .get::<gio::OutputStream>()
- .map_err(|err| err.to_string())?;
+ .emit_by_name::<Option<gio::OutputStream>>(
+ SIGNAL_GET_FRAGMENT_STREAM,
+ &[&segment_file_location],
+ )
+ .ok_or_else(|| String::from("Error while getting fragment stream"))?;
settings
.giostreamsink
@@ -250,15 +251,12 @@ impl HlsSink3 {
// Acquires the playlist file handle so we can update it with new content. By default, this
// is expected to be the same file every time.
let mut playlist_stream = element
- .emit_by_name(SIGNAL_GET_PLAYLIST_STREAM, &[&playlist_location])
- .expect("Error while getting playlist stream")
- .get::<gio::OutputStream>()
- .map_err(|err| {
- gst_error!(
- CAT,
- "Could not get stream to write playlist content: {}",
- err.to_string()
- );
+ .emit_by_name::<Option<gio::OutputStream>>(
+ SIGNAL_GET_PLAYLIST_STREAM,
+ &[&playlist_location],
+ )
+ .ok_or_else(|| {
+ gst_error!(CAT, "Could not get stream to write playlist content",);
gst::StateChangeError
})?
.into_write();
@@ -280,9 +278,11 @@ impl HlsSink3 {
if state.old_segment_locations.len() > max_num_segments {
for _ in 0..state.old_segment_locations.len() - max_num_segments {
let old_segment_location = state.old_segment_locations.remove(0);
- let _ = element
- .emit_by_name(SIGNAL_DELETE_FRAGMENT, &[&old_segment_location])
- .expect("Error while processing signal handler");
+ if !element
+ .emit_by_name::<bool>(SIGNAL_DELETE_FRAGMENT, &[&old_segment_location])
+ {
+ gst_error!(CAT, "Could not delete fragment");
+ }
}
}
}