Synchronization source internal handler within the incoming packets queue.
#include <iqueue.h>
SyncSourceLink (MembershipBookkeeping *m, SyncSource *s, IncomingRTPPktLink *fp=NULL, IncomingRTPPktLink *lp=NULL, SyncSourceLink *ps=NULL, SyncSourceLink *ns=NULL, SyncSourceLink *ncollis=NULL)
~SyncSourceLink ()
Note it deletes the source. MembershipBookkeeping * getMembership ()
SyncSource * getSource ()
Get the synchronization source object this link objet holds information for. IncomingRTPPktLink * getFirst ()
Get first RTP (data) packet in the queue of packets received from this socket. void setFirst (IncomingRTPPktLink *fp)
IncomingRTPPktLink * getLast ()
Get last RTP (data) packet in the queue of packets received from this socket. void setLast (IncomingRTPPktLink *lp)
SyncSourceLink * getPrev ()
Get the link object for the previous RTP source. void setPrev (SyncSourceLink *ps)
SyncSourceLink * getNext ()
Get the link object for the next RTP source. void setNext (SyncSourceLink *ns)
SyncSourceLink * getNextCollis ()
Get the link object for the next RTP source in the hash table entry collision list. void setNextCollis (SyncSourceLink *ns)
ConflictingTransportAddress * getPrevConflict () const
void setPrevConflict (InetAddress &addr, tpport_t dataPort, tpport_t controlPort)
Get conflicting address. unsigned char * getSenderInfo ()
void setSenderInfo (unsigned char *si)
unsigned char * getReceiverInfo ()
void setReceiverInfo (unsigned char *ri)
timeval getLastPacketTime () const
timeval getLastRTCPPacketTime () const
timeval getLastRTCPSRTime () const
uint32 getObservedPacketCount () const
Get the total number of RTP packets received from this source. void incObservedPacketCount ()
uint32 getObservedOctetCount () const
Get the total number of payload octets received from this source. void incObservedOctetCount (uint32 n)
uint16 getMaxSeqNum () const
Get the highest valid sequence number received. void setMaxSeqNum (uint16 max)
Set the highest valid sequence number recived. uint32 getExtendedMaxSeqNum () const
void setExtendedMaxSeqNum (uint32 seq)
uint32 getCumulativePacketLost () const
void setCumulativePacketLost (uint32 pl)
uint8 getFractionLost () const
void setFractionLost (uint8 fl)
uint32 getLastPacketTransitTime ()
void setLastPacketTransitTime (uint32 time)
float getJitter () const
void setJitter (float j)
uint32 getInitialDataTimestamp () const
void setInitialDataTimestamp (uint32 ts)
timeval getInitialDataTime () const
void setInitialDataTime (timeval it)
bool getGoodbye ()
Mark this source as having sent a BYE control packet. bool getHello ()
Mark this source as having sent some packet. uint32 getBadSeqNum () const
void setBadSeqNum (uint32 seq)
uint8 getProbation () const
void setProbation (uint8 p)
void decProbation ()
bool isValid () const
uint16 getBaseSeqNum () const
void setBaseSeqNum (uint16 seqnum)
uint32 getSeqNumAccum () const
void incSeqNumAccum ()
void initSequence (uint16 seqnum)
Start a new sequence of received packets. void recordInsertion (const IncomingRTPPktLink &pl)
Record the insertion of an RTP packet from this source into the scheduled reception queue. void initStats ()
void computeStats ()
Compute cumulative packet lost and fraction of packets lost during the last reporting interval.
MembershipBookkeeping * membership
SyncSource * source
IncomingRTPPktLink * first
IncomingRTPPktLink * last
SyncSourceLink * prev
SyncSourceLink * next
SyncSourceLink * nextCollis
ConflictingTransportAddress * prevConflict
unsigned char * senderInfo
unsigned char * receiverInfo
timeval lastPacketTime
timeval lastRTCPPacketTime
timeval lastRTCPSRTime
uint32 obsPacketCount
uint32 obsOctetCount
uint16 maxSeqNum
uint32 extendedMaxSeqNum
uint32 cumulativePacketLost
uint8 fractionLost
uint32 lastPacketTransitTime
float jitter
uint32 initialDataTimestamp
timeval initialDataTime
bool flag
uint32 badSeqNum
uint8 probation
uint16 baseSeqNum
uint32 expectedPrior
uint32 receivedPrior
uint32 seqNumAccum
static const uint32 SEQNUMMOD
Synchronization Source internal handler within the incoming packets queue.
Incoming packets queue objects hold a hash table and a linked list of synchronization sources. For each of these sources, there is also a linked list of incoming rtp packets, which are linked in an 'all incoming packets' list as well. SyncSourceLink objects hold the necessary data to maintain these data estructures, as well as source specific information and statistics for RTCP,
Author:
Federico Montesino Pouzols [email protected]
Note it deletes the source.
Compute cumulative packet lost and fraction of packets lost during the last reporting interval.
Get first RTP (data) packet in the queue of packets received from this socket.
Mark this source as having sent a BYE control packet.
Returns:
whether some packet from this source had been received before (getHello() has been called at least once)
Mark this source as having sent some packet.
Returns:
whether no packet from this source had been received before
Get last RTP (data) packet in the queue of packets received from this socket.
Get the highest valid sequence number received.
Get the link object for the next RTP source.
Get the link object for the next RTP source in the hash table entry collision list. Note that collision does not refer to SSRC collision, but hash table collision.
Get the total number of payload octets received from this source.
Get the total number of RTP packets received from this source.
Get the link object for the previous RTP source.
Get the synchronization source object this link objet holds information for.
Start a new sequence of received packets.
Record the insertion of an RTP packet from this source into the scheduled reception queue. All received packets should be registered with recordReception(), but only those actually inserted into the queue should be registered via this method.
Parameters:
pl Link structure for packet inserted into the queue.
Set the highest valid sequence number recived.
Parameters:
max Sequence number.
Get conflicting address.
Generated automatically by Doxygen for ccRTP from the source code.