Package | Description |
---|---|
org.jlibrtp |
The jlibrtp package contains the core classes of jlibrtp.
|
Modifier and Type | Class and Description |
---|---|
class |
RtcpPktAPP
Application specific RTCP packets
|
class |
RtcpPktBYE
RTCP packets for sending Bye messages
|
class |
RtcpPktPSFB
RTCP packets for Payload-Specific Feedback Messages
|
class |
RtcpPktRR
RTCP packets for Receiver Reports
|
class |
RtcpPktRTPFB
RTCP packets for RTP Feedback Messages
In line with RFC 4585, this packet currently only supports NACKs
|
class |
RtcpPktSDES
RTCP packets for Source Descriptions
|
class |
RtcpPktSR
RTCP packets for Sender Reports
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Hashtable<java.lang.Long,java.util.LinkedList<RtcpPkt>> |
RTCPSession.fbQueue
Feedback queue , index is SSRC of target
|
protected java.util.LinkedList<RtcpPkt> |
CompRtcpPkt.rtcpPkts
Stores the different subclasses of RtcpPkt that make up the compound packet
|
Modifier and Type | Method and Description |
---|---|
protected RtcpPkt[] |
RTCPSession.getFromFbQueue(long ssrc)
Checks whether there are ny feedback packets waiting
to be sent.
|
Modifier and Type | Method and Description |
---|---|
protected void |
CompRtcpPkt.addPacket(RtcpPkt aPkt)
Add a RTCP packet to the compound packet.
|
protected int |
RTCPSession.addToFbQueue(long targetSsrc,
RtcpPkt aPkt)
Check the feedback queue for similar packets and adds
the new packet if it is not redundant
|