Struct rtcp::sender_report::SenderReport[][src]

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: u32

The synchronization source identifier for the originator of this SR packet.

ntp_time: u64

The 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: u32

Corresponds 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: u32

The total number of RTP data packets transmitted by the sender since starting transmission up until the time this SR packet was generated.

octet_count: u32

The 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: Bytes

ProfileExtensions contains additional, payload-specific information that needs to be reported regularly about the sender.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Marshal encodes the packet in binary.

Header returns the Header associated with this packet.

destination_ssrc returns an array of SSRC values that this packet refers to.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Unmarshal decodes the SenderReport from binary

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.