File: utils.rs

package info (click to toggle)
rust-gstreamer-video 0.24.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,244 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
// Take a look at the license at the top of the repository in the LICENSE file.

pub trait HasStreamLock {
    #[doc(alias = "get_stream_lock")]
    fn stream_lock(&self) -> *mut glib::ffi::GRecMutex;
    #[doc(alias = "get_element_as_ptr")]
    fn element_as_ptr(&self) -> *const gst::ffi::GstElement;
}