Package org.jitsi.service.neomedia.rtp
Class RTCPReportAdapter
- java.lang.Object
-
- org.jitsi.service.neomedia.rtp.RTCPReportAdapter
-
- All Implemented Interfaces:
RTCPReportListener
- Direct Known Subclasses:
BandwidthEstimatorImpl
public class RTCPReportAdapter extends Object implements RTCPReportListener
A default implementation of RTCPReportListener to facilitate implementers.- Author:
- Lyubomir Marinov
-
-
Constructor Summary
Constructors Constructor Description RTCPReportAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrtcpExtendedReportReceived(RTCPExtendedReport extendedReport)Notifies this listener that a specific RTCP XR was received by the local endpoint.voidrtcpExtendedReportSent(RTCPExtendedReport extendedReport)Notifies this listener that a specific RTCP XR was sent by the local endpoint.voidrtcpReportReceived(net.sf.fmj.media.rtp.RTCPReport report)Notifies this listener that a specific RTCP SR or RR was received by the local endpoint.voidrtcpReportSent(net.sf.fmj.media.rtp.RTCPReport report)Notifies this listener that a specific RTCP SR or RR was sent by the local endpoint.
-
-
-
Method Detail
-
rtcpExtendedReportReceived
public void rtcpExtendedReportReceived(RTCPExtendedReport extendedReport)
Notifies this listener that a specific RTCP XR was received by the local endpoint.- Specified by:
rtcpExtendedReportReceivedin interfaceRTCPReportListener- Parameters:
extendedReport- the received RTCP XR
-
rtcpExtendedReportSent
public void rtcpExtendedReportSent(RTCPExtendedReport extendedReport)
Notifies this listener that a specific RTCP XR was sent by the local endpoint.- Specified by:
rtcpExtendedReportSentin interfaceRTCPReportListener- Parameters:
extendedReport- the sent RTCP XR
-
rtcpReportReceived
public void rtcpReportReceived(net.sf.fmj.media.rtp.RTCPReport report)
Notifies this listener that a specific RTCP SR or RR was received by the local endpoint.- Specified by:
rtcpReportReceivedin interfaceRTCPReportListener- Parameters:
report- the received RTCP SR or RR
-
rtcpReportSent
public void rtcpReportSent(net.sf.fmj.media.rtp.RTCPReport report)
Notifies this listener that a specific RTCP SR or RR was sent by the local endpoint.- Specified by:
rtcpReportSentin interfaceRTCPReportListener- Parameters:
report- the sent RTCP SR or RR
-
-