#[repr(C)]pub struct AVRTCPSenderReport {
pub ssrc: u32,
pub ntp_timestamp: u64,
pub rtp_timestamp: u32,
pub sender_nb_packets: u32,
pub sender_nb_bytes: u32,
}Expand description
RTCP SR (Sender Report) information
The received sender report information for an RTSP stream, exposed as AV_PKT_DATA_RTCP_SR side data.
Fields§
§ssrc: u32< Synchronization source identifier
ntp_timestamp: u64< NTP time when the report was sent
rtp_timestamp: u32< RTP time when the report was sent
sender_nb_packets: u32< Total number of packets sent
sender_nb_bytes: u32< Total number of bytes sent (excluding headers or padding)
Trait Implementations§
Source§impl Clone for AVRTCPSenderReport
impl Clone for AVRTCPSenderReport
Source§fn clone(&self) -> AVRTCPSenderReport
fn clone(&self) -> AVRTCPSenderReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AVRTCPSenderReport
Source§impl Debug for AVRTCPSenderReport
impl Debug for AVRTCPSenderReport
impl Eq for AVRTCPSenderReport
Source§impl PartialEq for AVRTCPSenderReport
impl PartialEq for AVRTCPSenderReport
impl StructuralPartialEq for AVRTCPSenderReport
Auto Trait Implementations§
impl Freeze for AVRTCPSenderReport
impl RefUnwindSafe for AVRTCPSenderReport
impl Send for AVRTCPSenderReport
impl Sync for AVRTCPSenderReport
impl Unpin for AVRTCPSenderReport
impl UnsafeUnpin for AVRTCPSenderReport
impl UnwindSafe for AVRTCPSenderReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more