- java.lang.Object
-
- dev.onvoid.webrtc.RTCRtcpParameters
-
public class RTCRtcpParameters extends Object
Provides information on RTCP settings.- Author:
- Alex Andres
-
-
Field Summary
Fields Modifier and Type Field Description StringcNameThe Canonical Name (CNAME) used by RTCP (e.g.booleanreducedSizeWhether reduced size RTCP is configured (if true) or compound RTCP.
-
Constructor Summary
Constructors Constructor Description RTCRtcpParameters(String cName, boolean reducedSize)Creates an instance of RTCRtcpParameters with the specified canonical name and the reduced size flag.
-
-
-
Field Detail
-
cName
public final String cName
The Canonical Name (CNAME) used by RTCP (e.g. in SDES messages).
-
reducedSize
public final boolean reducedSize
Whether reduced size RTCP is configured (if true) or compound RTCP.
-
-
Constructor Detail
-
RTCRtcpParameters
public RTCRtcpParameters(String cName, boolean reducedSize)
Creates an instance of RTCRtcpParameters with the specified canonical name and the reduced size flag.- Parameters:
cName- The Canonical Name used by RTCP.reducedSize- True if reduced size RTCP is configured, false otherwise.
-
-