gstreamer-rs/gstreamer-rtsp-server/src/rtsp_client.rs

25 lines
700 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use glib::{prelude::*, source::SourceId, translate::*};
use crate::RTSPClient;
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::RTSPClient>> Sealed for T {}
}
pub trait RTSPClientExtManual: sealed::Sealed + IsA<RTSPClient> + 'static {
#[doc(alias = "gst_rtsp_client_attach")]
fn attach(&self, context: Option<&glib::MainContext>) -> SourceId {
unsafe {
from_glib(ffi::gst_rtsp_client_attach(
self.as_ref().to_glib_none().0,
context.to_glib_none().0,
))
}
}
}
impl<O: IsA<RTSPClient>> RTSPClientExtManual for O {}