mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 01:21:05 +00:00
gstreamer: Add some setters for Message
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1448>
This commit is contained in:
parent
700004b8ce
commit
224215a844
1 changed files with 14 additions and 0 deletions
|
@ -57,6 +57,13 @@ impl MessageRef {
|
|||
}
|
||||
}
|
||||
|
||||
#[doc(alias = "gst_message_set_seqnum")]
|
||||
pub fn set_seqnum(&self, seqnum: Seqnum) {
|
||||
unsafe {
|
||||
ffi::gst_message_set_seqnum(self.as_mut_ptr(), seqnum.0.get());
|
||||
}
|
||||
}
|
||||
|
||||
#[doc(alias = "get_structure")]
|
||||
#[doc(alias = "gst_message_get_structure")]
|
||||
#[inline]
|
||||
|
@ -2137,6 +2144,13 @@ impl StreamStart {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[doc(alias = "gst_message_set_group_id")]
|
||||
pub fn set_group_id(&mut self, group_id: GroupId) {
|
||||
unsafe {
|
||||
ffi::gst_message_set_group_id(self.as_mut_ptr(), group_id.0.get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl std::fmt::Debug for StreamStart {
|
||||
|
|
Loading…
Reference in a new issue