- java.lang.Object
-
- dev.onvoid.webrtc.RTCRtpParameters
-
- Direct Known Subclasses:
RTCRtpSendParameters
public class RTCRtpParameters extends Object
Describes RTP stack settings used by bothRTCRtpSenders andRTCRtpReceivers.- Author:
- Alex Andres
-
-
Field Summary
Fields Modifier and Type Field Description List<RTCRtpCodecParameters>codecsA list containing the media codecs that an RTCRtpSender will choose from, as well as entries for RTX, RED and FEC mechanisms.List<RTCRtpHeaderExtensionParameters>headerExtensionsA list containing parameters for RTP header extensions.RTCRtcpParametersrtcpParameters used for RTCP.
-
Constructor Summary
Constructors Constructor Description RTCRtpParameters()
-
-
-
Field Detail
-
headerExtensions
public List<RTCRtpHeaderExtensionParameters> headerExtensions
A list containing parameters for RTP header extensions.
-
rtcp
public RTCRtcpParameters rtcp
Parameters used for RTCP.
-
codecs
public List<RTCRtpCodecParameters> codecs
A list containing the media codecs that an RTCRtpSender will choose from, as well as entries for RTX, RED and FEC mechanisms. Corresponding to each media codec where retransmission via RTX is enabled, there will be an entry in codecs with a mimeType attribute indicating retransmission via "audio/rtx" or "video/rtx", and an sdpFmtpLine attribute (providing the "apt" and "rtx-time" parameters).
-
-