lvqr-ingest 1.1.0

RTMP/WHIP/SRT ingest translated to MoQ tracks for LVQR
Documentation
#[cfg(feature = "rtmp")]
pub mod rtmp;

#[cfg(feature = "rtmp")]
pub mod bridge;

pub mod dispatch;
pub mod observer;

pub mod error;
pub mod protocol;
pub mod remux;

pub use dispatch::{publish_fragment, publish_init, publish_scte35};
pub use error::IngestError;
pub use observer::{MediaCodec, NoopRawSampleObserver, RawSampleObserver, SharedRawSampleObserver};
pub use protocol::IngestProtocol;

#[cfg(feature = "rtmp")]
pub use bridge::RtmpMoqBridge;

#[cfg(feature = "rtmp")]
pub use protocol::RtmpIngest;

#[cfg(feature = "rtmp")]
pub use rtmp::{RtmpConfig, RtmpServer, SessionDeregisterFn, SessionRegisterFn, SessionRegistrar};