gstreamer-rs/gstreamer-gl/src/functions.rs
Sebastian Dröge 37bfb78fdc Change some assertions to debug assertions
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>
2023-01-14 17:13:46 +02:00

49 lines
1.4 KiB
Rust

use std::ptr;
use glib::{object::IsA, translate::*};
use crate::{GLContext, GLDisplay};
#[doc(alias = "gst_gl_handle_context_query")]
pub fn gl_handle_context_query(
element: &impl IsA<gst::Element>,
query: &mut gst::query::Context,
display: Option<&impl IsA<GLDisplay>>,
context: Option<&impl IsA<GLContext>>,
other_context: Option<&impl IsA<GLContext>>,
) -> bool {
skip_assert_initialized!();
unsafe {
from_glib(ffi::gst_gl_handle_context_query(
element.as_ref().to_glib_none().0,
query.as_mut_ptr(),
display.map(|p| p.as_ref()).to_glib_none().0,
context.map(|p| p.as_ref()).to_glib_none().0,
other_context.map(|p| p.as_ref()).to_glib_none().0,
))
}
}
#[doc(alias = "gst_gl_handle_set_context")]
pub fn gl_handle_set_context(
element: &impl IsA<gst::Element>,
context: &gst::Context,
) -> (Option<GLDisplay>, Option<GLContext>) {
skip_assert_initialized!();
unsafe {
let mut display = ptr::null_mut();
let mut other_context = ptr::null_mut();
let ret = from_glib(ffi::gst_gl_handle_set_context(
element.as_ref().to_glib_none().0,
context.to_glib_none().0,
&mut display,
&mut other_context,
));
if ret {
(from_glib_full(display), from_glib_full(other_context))
} else {
(None, None)
}
}
}