Package org.jitsi.service.neomedia.rtp
Interface RTCPReportListener
-
- All Known Implementing Classes:
BandwidthEstimatorImpl,RTCPReportAdapter
public interface RTCPReportListener- Author:
- Lyubomir Marinov
-
-
Method Summary
All Methods Instance Methods Abstract 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
void rtcpExtendedReportReceived(RTCPExtendedReport extendedReport)
Notifies this listener that a specific RTCP XR was received by the local endpoint.- Parameters:
extendedReport- the received RTCP XR
-
rtcpExtendedReportSent
void rtcpExtendedReportSent(RTCPExtendedReport extendedReport)
Notifies this listener that a specific RTCP XR was sent by the local endpoint.- Parameters:
extendedReport- the sent RTCP XR
-
rtcpReportReceived
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.- Parameters:
report- the received RTCP SR or RR
-
rtcpReportSent
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.- Parameters:
report- the sent RTCP SR or RR
-
-