gstreamer-rs/gstreamer-video/src/utils.rs
2020-12-15 11:53:31 +01:00

7 lines
234 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
pub trait HasStreamLock {
fn get_stream_lock(&self) -> *mut glib::ffi::GRecMutex;
fn get_element_as_ptr(&self) -> *const gst::ffi::GstElement;
}