gstreamer-rs/gstreamer-rtsp-server/src/subclass/mod.rs
Prakash Duggaraju ecf9a43692 rtsp-server: Add support for subclassing GstRtspMountPoints
Implement MountPointsImpl and MountPointsExt to allow subclassing.
Update the example to show usage.
2021-06-28 10:33:59 +03:00

23 lines
710 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
#![allow(clippy::cast_ptr_alignment)]
mod rtsp_client;
mod rtsp_media;
mod rtsp_media_factory;
mod rtsp_mount_points;
mod rtsp_server;
pub use self::rtsp_media::SDPInfo;
pub mod prelude {
#[doc(hidden)]
pub use gst::subclass::prelude::*;
pub use super::rtsp_client::{RTSPClientImpl, RTSPClientImplExt};
pub use super::rtsp_media::{RTSPMediaImpl, RTSPMediaImplExt};
pub use super::rtsp_media_factory::{RTSPMediaFactoryImpl, RTSPMediaFactoryImplExt};
pub use super::rtsp_mount_points::{RTSPMountPointsImpl, RTSPMountPointsImplExt};
pub use super::rtsp_server::{RTSPServerImpl, RTSPServerImplExt};
}