mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 17:41:05 +00:00
buffer_pool: Add {get,set}_allocator bindings
This commit is contained in:
parent
32e1d68d36
commit
6461a3abaa
3 changed files with 40 additions and 4 deletions
|
@ -10,7 +10,7 @@ use std::ptr;
|
|||
|
||||
use gst_sys;
|
||||
|
||||
use glib::translate::{from_glib_full, ToGlibPtr};
|
||||
use glib::translate::from_glib_full;
|
||||
use glib::IsA;
|
||||
|
||||
use AllocationParams;
|
||||
|
@ -28,7 +28,7 @@ impl<O: IsA<Allocator>> AllocatorExtManual for O {
|
|||
self.as_ptr() as *mut _,
|
||||
size,
|
||||
match params {
|
||||
Some(val) => val.to_glib_none().0 as *mut _,
|
||||
Some(val) => val.as_ptr() as *mut _,
|
||||
None => ptr::null_mut(),
|
||||
},
|
||||
);
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
use AllocationParams;
|
||||
use Allocator;
|
||||
use BufferPool;
|
||||
use Structure;
|
||||
|
||||
|
@ -144,7 +146,36 @@ impl BufferPoolConfig {
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: get_allocator / set_allocator
|
||||
pub fn get_allocator(&self) -> Option<(Option<Allocator>, AllocationParams)> {
|
||||
unsafe {
|
||||
let mut allocator = ptr::null_mut();
|
||||
let mut params = mem::zeroed();
|
||||
let ret = from_glib(gst_sys::gst_buffer_pool_config_get_allocator(
|
||||
self.0.to_glib_none().0,
|
||||
&mut allocator,
|
||||
&mut params,
|
||||
));
|
||||
if ret {
|
||||
Some((from_glib_none(allocator), params.into()))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_allocator(&self, allocator: Option<&Allocator>, params: Option<&AllocationParams>) {
|
||||
assert!(allocator.is_some() || params.is_some());
|
||||
unsafe {
|
||||
gst_sys::gst_buffer_pool_config_set_allocator(
|
||||
self.0.to_glib_none().0,
|
||||
allocator.to_glib_none().0,
|
||||
match params {
|
||||
Some(val) => val.as_ptr(),
|
||||
None => ptr::null(),
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
// TODO: options iterator
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ use glib::translate::{from_glib, from_glib_full, from_glib_none, ToGlibPtr};
|
|||
use miniobject::MiniObject;
|
||||
|
||||
use AllocationParams;
|
||||
use Allocator;
|
||||
use MemoryFlags;
|
||||
|
||||
gst_define_mini_object_wrapper!(Memory, MemoryRef, gst_sys::GstMemory, [Debug,], || {
|
||||
|
@ -43,7 +44,7 @@ impl fmt::Debug for MemoryRef {
|
|||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
f.debug_struct("Memory")
|
||||
.field("ptr", unsafe { &self.as_ptr() })
|
||||
//.field("allocator", &self.get_allocator())
|
||||
.field("allocator", &self.get_allocator())
|
||||
.field("parent", &self.get_parent())
|
||||
.field("maxsize", &self.get_maxsize())
|
||||
.field("align", &self.get_align())
|
||||
|
@ -168,6 +169,10 @@ impl Memory {
|
|||
}
|
||||
|
||||
impl MemoryRef {
|
||||
pub fn get_allocator(&self) -> Option<Allocator> {
|
||||
unsafe { from_glib_none(self.0.allocator) }
|
||||
}
|
||||
|
||||
pub fn get_parent(&self) -> Option<&MemoryRef> {
|
||||
unsafe {
|
||||
if self.0.parent.is_null() {
|
||||
|
|
Loading…
Reference in a new issue