rtp_parser/lib.rs
1//! # RTP parser
2//!
3//! This crate contains a parser written in Rust (using nom) for the RTP protocol
4//!
5//! See also:
6//! - [RFC 3550](https://tools.ietf.org/html/rfc3550): RTP: A Transport Protocol for Real-Time Applications
7
8mod rtp;
9pub use rtp::*;
10
11mod rtp_header_extension;
12pub use rtp_header_extension::*;
13
14mod parser;
15pub use parser::*;