mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-23 10:01:02 +00:00
21 lines
638 B
Rust
21 lines
638 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;
|
|
|
|
pub trait RTSPClientExtManual: 'static {
|
|
#[doc(alias = "gst_rtsp_client_attach")]
|
|
fn attach(&self, context: Option<&glib::MainContext>) -> SourceId;
|
|
}
|
|
|
|
impl<O: IsA<RTSPClient>> RTSPClientExtManual for O {
|
|
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,
|
|
))
|
|
}
|
|
}
|
|
}
|