pub struct SenderReport {
pub ssrc: u32,
pub ntp_time: u64,
pub rtp_time: u32,
pub packet_count: u32,
pub octet_count: u32,
pub reports: Vec<ReceptionReport>,
pub profile_extensions: Bytes,
}Expand description
A SenderReport (SR) packet provides reception quality feedback for an RTP stream
Fields§
§ssrc: u32The synchronization source identifier for the originator of this SR packet.
ntp_time: u64The wallclock time when this report was sent so that it may be used in combination with timestamps returned in reception reports from other receivers to measure round-trip propagation to those receivers.
rtp_time: u32Corresponds to the same time as the NTP timestamp (above), but in the same units and with the same random offset as the RTP timestamps in data packets. This correspondence may be used for intra- and inter-media synchronization for sources whose NTP timestamps are synchronized, and may be used by media-independent receivers to estimate the nominal RTP clock frequency.
packet_count: u32The total number of RTP data packets transmitted by the sender since starting transmission up until the time this SR packet was generated.
octet_count: u32The total number of payload octets (i.e., not including header or padding) transmitted in RTP data packets by the sender since starting transmission up until the time this SR packet was generated.
reports: Vec<ReceptionReport>Zero or more reception report blocks depending on the number of other sources heard by this sender since the last report. Each reception report block conveys statistics on the reception of RTP packets from a single synchronization source.
profile_extensions: BytesProfileExtensions contains additional, payload-specific information that needs to be reported regularly about the sender.
Trait Implementations§
Source§impl Clone for SenderReport
impl Clone for SenderReport
Source§fn clone(&self) -> SenderReport
fn clone(&self) -> SenderReport
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SenderReport
impl Debug for SenderReport
Source§impl Default for SenderReport
impl Default for SenderReport
Source§fn default() -> SenderReport
fn default() -> SenderReport
Source§impl Display for SenderReport
impl Display for SenderReport
impl Eq for SenderReport
Source§impl Marshal for SenderReport
impl Marshal for SenderReport
Source§impl MarshalSize for SenderReport
impl MarshalSize for SenderReport
Source§fn marshal_size(&self) -> usize
fn marshal_size(&self) -> usize
Marshal::marshal_to will write for this value.Source§impl Packet for SenderReport
impl Packet for SenderReport
Source§fn destination_ssrc(&self) -> Vec<u32>
fn destination_ssrc(&self) -> Vec<u32>
destination_ssrc returns an array of SSRC values that this packet refers to.
Source§fn as_any(&self) -> &dyn Any
fn as_any(&self) -> &dyn Any
Box<dyn Packet> can recover the concrete type.