Module webrtc.java

Class RTCRtcpParameters

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
    final String
    The Canonical Name (CNAME) used by RTCP (e.g.
    final boolean
    Whether 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.
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • 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 Details

    • 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.
  • Method Details