rtc 0.9.0

Sans-I/O WebRTC implementation in Rust
Documentation
1
2
3
4
5
6
7
8
use crate::rtp_transceiver::rtp_sender::rtp_parameters::RTCRtpParameters;

/// RTP receive parameters for configuring receivers.
#[derive(Default, Debug, Clone)]
pub struct RTCRtpReceiveParameters {
    /// The RTP stack settings
    pub rtp_parameters: RTCRtpParameters,
}