QueueRTCPManager(3) | Library Functions Manual | QueueRTCPManager(3) |
QueueRTCPManager - Adds generic management of RTCP functions to an RTP data queue.
#include <cqueue.h>
Inherits RTPDataQueue, and RTCPCompoundHandler.
Inherited by AVPQueue.
RTCPSenderInfo * getMRSenderInfo (SyncSource
&src)
Get the most recent sender report received from a synchronization source.
RTCPReceiverInfo * getMRReceiverInfo (SyncSource
&srcFrom)
Ask for the info in the most recent receiver report about the local source
received from the source given as parameter. void setLeavingDelay
(microtimeout_t delay)
Set how much time the stack will wait before deleting a synchronization source
that has sent an RTCP BYE packet. void setEnd2EndDelay
(microtimeout_t t)
This method sets the maximum end to end delay allowed. microtimeout_t
getDefaultEnd2EndDelay () const
microtimeout_t getEnd2EndDelay () const
void setSendersControlFraction (float fraction)
Specify the fraction of the total control bandwith to be dedicated to senders
reports. void setMinRTCPInterval (microtimeout_t interval)
Manually set the minimum interval for sending RTP compound packets. uint32
getSendRTCPPacketCount () const
Get the total number of RTCP packets sent until now. void
setOutQueueCryptoContextCtrl (CryptoContextCtrl *cc)
Set output queue CryptoContext. void
removeOutQueueCryptoContextCtrl (CryptoContextCtrl *cc)
Remove output queue CryptoContext. CryptoContextCtrl *
getOutQueueCryptoContextCtrl (uint32 ssrc)
Get an output queue CryptoContext identified by SSRC. void
setInQueueCryptoContextCtrl (CryptoContextCtrl *cc)
Set input queue CryptoContext. void
removeInQueueCryptoContextCtrl (CryptoContextCtrl *cc)
Remove input queue CryptoContext. CryptoContextCtrl *
getInQueueCryptoContextCtrl (uint32 ssrc)
Get an input queue CryptoContext identified by SSRC.
QueueRTCPManager (uint32
size=RTPDataQueue::defaultMembersHashSize, RTPApplication
&app=defaultApplication())
QueueRTCPManager (uint32 ssrc, uint32
size=RTPDataQueue::defaultMembersHashSize, RTPApplication
&app=defaultApplication())
virtual ~QueueRTCPManager ()
const RTPApplication & getApplication ()
void setControlBandwidth (float fraction)
float getControlBandwidth () const
void controlTransmissionService ()
Build and send RTCP packets following timing rules (including the 'timer
reconsideration' algorithm). void controlReceptionService ()
Process incoming RTCP packets pending in the control reception socket. bool
checkSSRCInRTCPPkt (SyncSourceLink &sourceLink, bool
is_new, InetAddress &na, tpport_t tp)
Appy collision and loop detection and correction algorithm when receiving RTCP
packets. void endQueueRTCPManager ()
virtual void onGotSR (SyncSource &source, SendReport
&SR, uint8 blocks)
Plug-in for processing (acquire information carried in) an incoming RTCP
Sender Report. virtual void onGotRR (SyncSource &source,
RecvReport &RR, uint8 blocks)
Plug-in for processing (acquire information carried in) an incoming RTCP
Receiver Report. bool onGotSDES (SyncSource &source,
RTCPPacket &pkt)
virtual bool onGotSDESChunk (SyncSource &source,
SDESChunk &chunk, size_t len)
Plug-in for handling of SDES chunks. virtual void onGotAPP
(SyncSource &, RTCPCompoundHandler::APPPacket &,
size_t)
Plug-in for handling of APP (application specific) RTCP packets. timeval
getRTCPCheckInterval ()
uint32 getLastSendPacketCount () const
Get the number of data packets sent at the time the last SR was generated.
void setPrevMembersNum (uint32 n)
uint32 getPrevMembersCount () const
size_t dispatchBYE (const std::string &reason)
This method is used to send an RTCP BYE packet. size_t
sendControlToDestinations (unsigned char *buffer, size_t len)
Adds generic management of RTCP functions to an RTP data queue.
Extends an RTP data i/o queue adding management of RTCP functions:
Provide feedback on the quality of the data distribution.
Convey the CNAME (persistent transport-level identifier) for every RTP source.
Control the sending rate of RTCP packets
Convey minimal control information about the participants
This class implements generic RTCP behaviour (as specified in RFC 1889/draft-ietf-avt-rtp-new) and may be specialized for specific profiles (see AVPQueue) or particular RTCP extensions.
Author:
Appy collision and loop detection and correction algorithm when receiving RTCP packets. Follows section 8.2 in draft-ietf-avp-rtp-new.
Parameters:
Returns:
Process incoming RTCP packets pending in the control reception socket.
Build and send RTCP packets following timing rules (including the 'timer reconsideration' algorithm).
This method is used to send an RTCP BYE packet. An RTCP BYE packet is sent when one of the the following circumstances occur:
Try to post a BYE message. It will send a BYE packet as long as at least one RTP or RTCP packet has been sent before. If the number of members in the session is more than 50, the algorithm described in section 6.3.7 of RFC 3550 is applied in order to avoid a flood of BYE messages.
Parameters:
Reimplemented from RTPQueueBase.
Get an input queue CryptoContext identified by SSRC.
Parameters:
Returns:
Get the number of data packets sent at the time the last SR was generated.
Ask for the info in the most recent receiver report about the local source received from the source given as parameter.
Parameters:
Returns:
Return values:
Get the most recent sender report received from a synchronization source.
Parameters:
Returns:
Return values:
Get an output queue CryptoContext identified by SSRC.
Parameters:
Returns:
Get the total number of RTCP packets sent until now.
Plug-in for handling of APP (application specific) RTCP packets.
Parameters:
Plug-in for processing (acquire information carried in) an incoming RTCP Receiver Report. The default implementation in this class only processes the receiver report blocks about the local source.
Parameters:
Parameters:
Plug-in for handling of SDES chunks.
Parameters:
Returns:
Plug-in for processing (acquire information carried in) an incoming RTCP Sender Report. The default implementation in this class only processes the sender information and the receiver report blocks about the local source.
Parameters:
Remove input queue CryptoContext. The endQueue method (provided by RTPQueue) also deletes all registered CryptoContexts.
Parameters:
Remove output queue CryptoContext. The endQueue method (provided by RTPQueue) also deletes all registered CryptoContexts.
Parameters:
This method sets the maximum end to end delay allowed. If the processing delay plus the trip time for a packet is greater than the end to end delay, the packet is discarded, and the application cannot get it.
This is a way of setting an upper bound to the end to end delay, computed as the elapsed time between the packet timestamping at the sender side, and the picking of the packet at the receiver side.
Parameters:
Set input queue CryptoContext. The endQueue method (provided by RTPQueue) deletes all registered CryptoContexts.
Parameters:
Set how much time the stack will wait before deleting a synchronization source that has sent an RTCP BYE packet.
Parameters:
Note:
Manually set the minimum interval for sending RTP compound packets.
Parameters:
See also:
Set output queue CryptoContext. The endQueue method (provided by RTPQueue) deletes all registered CryptoContexts.
Parameters:
Parameters:
Specify the fraction of the total control bandwith to be dedicated to senders reports.
Parameters:
This method sets the fraction of the global control bandwidth that will be dedicated to senders reports. Of course, 1 - fraction will be dedicated to receivers reports.
See also:
Generated automatically by Doxygen for ccRTP from the source code.
Sat Oct 27 2018 | ccRTP |