2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
|
2020-02-23 08:00:48 +00:00
|
|
|
#![allow(clippy::cast_ptr_alignment)]
|
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
mod rtsp_client;
|
|
|
|
mod rtsp_media;
|
|
|
|
mod rtsp_media_factory;
|
|
|
|
mod rtsp_server;
|
|
|
|
|
|
|
|
pub use self::rtsp_media::SDPInfo;
|
2020-02-23 08:00:48 +00:00
|
|
|
|
|
|
|
pub mod prelude {
|
2020-02-23 10:53:33 +00:00
|
|
|
pub use super::rtsp_client::{RTSPClientImpl, RTSPClientImplExt};
|
2020-02-23 08:00:48 +00:00
|
|
|
pub use super::rtsp_media::{RTSPMediaImpl, RTSPMediaImplExt};
|
|
|
|
pub use super::rtsp_media_factory::{RTSPMediaFactoryImpl, RTSPMediaFactoryImplExt};
|
2020-02-23 10:53:33 +00:00
|
|
|
pub use super::rtsp_server::{RTSPServerImpl, RTSPServerImplExt};
|
2020-02-23 08:00:48 +00:00
|
|
|
}
|