Skip to content
/ rtp-rs Public
forked from dholroyd/rtp-rs

Rust reader for Realtime Transport Protocol packet structure

Notifications You must be signed in to change notification settings

TibiToz/rtp-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rtp-rs

crates.io version Documentation

ChangeLog

Rust reader and builder for Realtime Transport Protocol packet structure.

This crate provides efficient read access to the fields and payload of an RTP packet. The provided type is just a wrapper around a &[u8] borrowed byte slice; It is zero-copy and zero-allocation, with RTP header fields only being read if calling code actually uses a given accessor method.

Does not support actually reading UDP from the network, or any kind or RTP session management (i.e. no buffering to handle packet reordering, loss notification, pacing, etc.)

Supported RTP syntax

  • reading
    • all simple header fields
    • extension header (if present, the u16 identifier and &[u8]value are exposed without further interpretation)
  • building
    • all simple header fields
    • extension header
    • padding to specified number of bytes

About

Rust reader for Realtime Transport Protocol packet structure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%