mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-16 13:16:32 +00:00
22 lines
650 B
Rust
22 lines
650 B
Rust
use glib;
|
|
use glib::object::IsA;
|
|
use glib::source::SourceId;
|
|
use glib::translate::*;
|
|
use gst_rtsp_server_sys;
|
|
use RTSPClient;
|
|
|
|
pub trait RTSPClientExtManual: 'static {
|
|
fn attach<'a, P: Into<Option<&'a glib::MainContext>>>(&self, context: P) -> SourceId;
|
|
}
|
|
|
|
impl<O: IsA<RTSPClient>> RTSPClientExtManual for O {
|
|
fn attach<'a, P: Into<Option<&'a glib::MainContext>>>(&self, context: P) -> SourceId {
|
|
let context = context.into();
|
|
unsafe {
|
|
from_glib(gst_rtsp_server_sys::gst_rtsp_client_attach(
|
|
self.as_ref().to_glib_none().0,
|
|
context.to_glib_none().0,
|
|
))
|
|
}
|
|
}
|
|
}
|