arcly_stream/protocol/
mod.rs1mod ingest;
7
8#[cfg(any(feature = "_rtp", feature = "srt", feature = "rtmp"))]
10pub(crate) mod byteops;
11
12pub use ingest::{
13 find_nal_start, run_tcp_ingest_server, IngestRateLimit, KeyframeGate, NalStart,
14 MAX_AUDIO_FRAME, MAX_VIDEO_FRAME,
15};
16
17#[cfg(feature = "rtmp")]
18#[cfg_attr(docsrs, doc(cfg(feature = "rtmp")))]
19pub mod rtmp;
20
21#[cfg(feature = "_rtp")]
22#[cfg_attr(docsrs, doc(cfg(any(feature = "rtsp", feature = "webrtc"))))]
23pub mod rtp;
24
25#[cfg(feature = "rtsp")]
26#[cfg_attr(docsrs, doc(cfg(feature = "rtsp")))]
27pub mod rtsp;
28
29#[cfg(feature = "srt")]
30#[cfg_attr(docsrs, doc(cfg(feature = "srt")))]
31pub mod srt;
32
33#[cfg(feature = "webrtc")]
34#[cfg_attr(docsrs, doc(cfg(feature = "webrtc")))]
35pub mod webrtc;