bufferpool: Add setters to BufferPoolAcquireParams

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1668>
This commit is contained in:
Sebastian Dröge 2025-03-23 12:08:27 +02:00 committed by GStreamer Marge Bot
parent 493106e725
commit 72f4c54e5e

View file

@ -301,6 +301,24 @@ impl BufferPoolAcquireParams {
pub fn stop(&self) -> crate::GenericFormattedValue {
unsafe { crate::GenericFormattedValue::new(from_glib(self.0.format), self.0.stop) }
}
pub fn set_flags(&mut self, flags: crate::BufferPoolAcquireFlags) {
self.0.flags = flags.into_glib();
}
pub fn set_format(&mut self, format: crate::Format) {
self.0.format = format.into_glib();
}
pub fn set_start(&mut self, start: crate::GenericFormattedValue) {
assert_eq!(self.format(), start.format());
self.0.start = start.value();
}
pub fn set_stop(&mut self, stop: crate::GenericFormattedValue) {
assert_eq!(self.format(), stop.format());
self.0.stop = stop.value();
}
}
impl PartialEq for BufferPoolAcquireParams {