gstreamer-rs/gstreamer-rtsp-server/src/rtsp_onvif_media_factory.rs
Sebastian Dröge abbc85c3d0 Remove unnecessary trait sealing
For all these traits only the implementation that already exists is possible.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1563>
2024-10-20 17:48:45 +00:00

23 lines
822 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use glib::{prelude::*, translate::*};
use crate::{ffi, RTSPContext, RTSPOnvifMediaFactory};
pub trait RTSPOnvifMediaFactoryExtManual: IsA<RTSPOnvifMediaFactory> + 'static {
#[doc(alias = "gst_rtsp_onvif_media_factory_requires_backchannel")]
fn requires_backchannel(&self, ctx: &RTSPContext) -> bool {
skip_assert_initialized!();
unsafe {
from_glib(ffi::gst_rtsp_onvif_media_factory_requires_backchannel(
self.as_ref()
.upcast_ref::<crate::RTSPMediaFactory>()
.to_glib_none()
.0,
ctx.to_glib_none().0,
))
}
}
}
impl<O: IsA<RTSPOnvifMediaFactory>> RTSPOnvifMediaFactoryExtManual for O {}