mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-22 15:08:12 +00:00
4ebec84f5e
Allows us to set all the crates in the main workspace file, so changing their versions or branch is much simpler and reduce the amount of noise in the diff Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
165 lines
5.5 KiB
Rust
165 lines
5.5 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use std::mem;
|
|
|
|
pub use crate::auto::functions::*;
|
|
use crate::ffi;
|
|
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(feature = "v1_16")]
|
|
#[cfg_attr(docsrs, 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(feature = "v1_16")]
|
|
#[cfg_attr(docsrs, 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(feature = "v1_22")]
|
|
#[cfg_attr(docsrs, 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(feature = "v1_22")]
|
|
#[cfg_attr(docsrs, 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(feature = "v1_22")]
|
|
#[cfg_attr(docsrs, 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()),
|
|
))
|
|
}
|
|
}
|