mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 11:31:06 +00:00
Use &ToSendValue for the stream-status stream_object in the builder
This commit is contained in:
parent
ccf6c1a632
commit
62058ab1c3
1 changed files with 6 additions and 3 deletions
|
@ -1704,7 +1704,7 @@ pub struct StreamStatusBuilder<'a> {
|
|||
other_fields: Vec<(&'a str, &'a ToSendValue)>,
|
||||
type_: ::StreamStatusType,
|
||||
owner: &'a ::Element,
|
||||
status_object: Option<&'a glib::Value>,
|
||||
status_object: Option<&'a glib::ToSendValue>,
|
||||
}
|
||||
impl<'a> StreamStatusBuilder<'a> {
|
||||
fn new(type_: ::StreamStatusType, owner: &'a ::Element) -> Self {
|
||||
|
@ -1719,7 +1719,7 @@ impl<'a> StreamStatusBuilder<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn status_object(self, status_object: &'a glib::Value) -> Self {
|
||||
pub fn status_object(self, status_object: &'a glib::ToSendValue) -> Self {
|
||||
Self {
|
||||
status_object: Some(status_object),
|
||||
..self
|
||||
|
@ -1730,7 +1730,10 @@ impl<'a> StreamStatusBuilder<'a> {
|
|||
let msg =
|
||||
ffi::gst_message_new_stream_status(src, s.type_.to_glib(), s.owner.to_glib_none().0);
|
||||
if let Some(status_object) = s.status_object {
|
||||
ffi::gst_message_set_stream_status_object(msg, status_object.to_glib_none().0);
|
||||
ffi::gst_message_set_stream_status_object(
|
||||
msg,
|
||||
status_object.to_send_value().to_glib_none().0,
|
||||
);
|
||||
}
|
||||
msg
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue