Uses of Class
jlibrtp.RtcpPkt

Packages that use RtcpPkt
jlibrtp The jlibrtp package contains the core classes of jlibrtp. 
 

Uses of RtcpPkt in jlibrtp
 

Subclasses of RtcpPkt in jlibrtp
 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
 

Fields in jlibrtp with type parameters of type RtcpPkt
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
 

Methods in jlibrtp that return RtcpPkt
protected  RtcpPkt[] RTCPSession.getFromFbQueue(long ssrc)
          Checks whether there are ny feedback packets waiting to be sent.
 

Methods in jlibrtp with parameters of type RtcpPkt
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
private  boolean RTCPSession.equivalent(RtcpPkt one, RtcpPkt two)
          Compares two packets to check whether they are equivalent feedback messages, to avoid sending the same feedback to a host twice.