mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-11 16:45:26 +00:00
These assertions can only trigger because of bugs in the bindings implementation or in the C code and not because of bugs in calling code, so using debug assertions is perfectly fine for them and reduces the number of assertions inlined everywhere in release builds. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1188>
163 lines
5.6 KiB
Rust
163 lines
5.6 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use std::mem;
|
|
|
|
use glib::{prelude::*, translate::*};
|
|
|
|
#[doc(alias = "gst_type_find_helper_for_data")]
|
|
pub fn type_find_helper_for_data(
|
|
obj: Option<&impl IsA<gst::Object>>,
|
|
data: impl AsRef<[u8]>,
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
|
assert_initialized_main_thread!();
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let data = data.as_ref();
|
|
let (ptr, len) = (data.as_ptr(), data.len());
|
|
let ret = ffi::gst_type_find_helper_for_data(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(ptr),
|
|
len,
|
|
prob.as_mut_ptr(),
|
|
);
|
|
if ret.is_null() {
|
|
Err(glib::bool_error!("No type could be found"))
|
|
} else {
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
|
#[doc(alias = "gst_type_find_helper_for_data_with_extension")]
|
|
pub fn type_find_helper_for_data_with_extension(
|
|
obj: Option<&impl IsA<gst::Object>>,
|
|
data: impl AsRef<[u8]>,
|
|
extension: Option<&str>,
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
|
assert_initialized_main_thread!();
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let data = data.as_ref();
|
|
let (ptr, len) = (data.as_ptr(), data.len());
|
|
let ret = ffi::gst_type_find_helper_for_data_with_extension(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(ptr),
|
|
len,
|
|
extension.to_glib_none().0,
|
|
prob.as_mut_ptr(),
|
|
);
|
|
if ret.is_null() {
|
|
Err(glib::bool_error!("No type could be found"))
|
|
} else {
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "gst_type_find_helper_for_buffer")]
|
|
pub fn type_find_helper_for_buffer<P: IsA<gst::Object>>(
|
|
obj: Option<&P>,
|
|
buf: &gst::BufferRef,
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let ret = ffi::gst_type_find_helper_for_buffer(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(buf.as_ptr()),
|
|
prob.as_mut_ptr(),
|
|
);
|
|
if ret.is_null() {
|
|
Err(glib::bool_error!("No type could be found"))
|
|
} else {
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
|
#[doc(alias = "gst_type_find_helper_for_buffer_with_extension")]
|
|
pub fn type_find_helper_for_buffer_with_extension<P: IsA<gst::Object>>(
|
|
obj: Option<&P>,
|
|
buf: &gst::BufferRef,
|
|
extension: Option<&str>,
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let ret = ffi::gst_type_find_helper_for_buffer_with_extension(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(buf.as_ptr()),
|
|
extension.to_glib_none().0,
|
|
prob.as_mut_ptr(),
|
|
);
|
|
if ret.is_null() {
|
|
Err(glib::bool_error!("No type could be found"))
|
|
} else {
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_22", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_22")))]
|
|
#[doc(alias = "gst_type_find_helper_for_buffer_with_caps")]
|
|
pub fn type_find_helper_for_buffer_with_caps(
|
|
obj: Option<&impl IsA<gst::Object>>,
|
|
buf: &gst::BufferRef,
|
|
caps: &gst::CapsRef,
|
|
) -> (Option<gst::Caps>, gst::TypeFindProbability) {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let ret = from_glib_full(ffi::gst_type_find_helper_for_buffer_with_caps(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(buf.as_ptr()),
|
|
mut_override(caps.as_ptr()),
|
|
prob.as_mut_ptr(),
|
|
));
|
|
(ret, from_glib(prob.assume_init()))
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_22", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_22")))]
|
|
#[doc(alias = "gst_type_find_helper_for_data_with_caps")]
|
|
pub fn type_find_helper_for_data_with_caps(
|
|
obj: Option<&impl IsA<gst::Object>>,
|
|
data: &[u8],
|
|
caps: &gst::CapsRef,
|
|
) -> (Option<gst::Caps>, gst::TypeFindProbability) {
|
|
skip_assert_initialized!();
|
|
let size = data.len() as _;
|
|
unsafe {
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
let ret = from_glib_full(ffi::gst_type_find_helper_for_data_with_caps(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
data.to_glib_none().0,
|
|
size,
|
|
mut_override(caps.as_ptr()),
|
|
prob.as_mut_ptr(),
|
|
));
|
|
(ret, from_glib(prob.assume_init()))
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_22", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_22")))]
|
|
#[doc(alias = "gst_type_find_list_factories_for_caps")]
|
|
pub fn type_find_list_factories_for_caps(
|
|
obj: Option<&impl IsA<gst::Object>>,
|
|
caps: &gst::CapsRef,
|
|
) -> glib::List<gst::TypeFindFactory> {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
glib::collections::List::from_glib_full(ffi::gst_type_find_list_factories_for_caps(
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
mut_override(caps.as_ptr()),
|
|
))
|
|
}
|
|
}
|