RTP packets being sent.
More...
#include <rtppkt.h>
Inheritance diagram for OutgoingRTPPkt:
Collaboration diagram for OutgoingRTPPkt:
Public Member Functions
OutgoingRTPPkt (const uint32 *const csrcs, uint16 numcsrc, const unsigned char *const hdrext, uint32 hdrextlen, const unsigned char *const data, size_t datalen, uint8 paddinglen=0,
CryptoContext *pcc=NULL)
Construct a new packet to be sent, containing several contributing source identifiers, header extensions and payload.
More...
OutgoingRTPPkt (const uint32 *const csrcs, uint16 numcsrc, const unsigned char *const data, size_t datalen, uint8 paddinglen=0,
CryptoContext *pcc=NULL)
Construct a new packet to be sent, containing several contributing source identifiers and payload.
More...
Construct a new packet (fast variant, with no contributing sources and no header extension) to be sent.
More...
Sets the sequence number in the header.
More...
Set synchronization source numeric identifier.
More...
Set synchronization source numeric identifier.
More...
Specify the value of the marker bit.
More...
Outgoing packets are equal if their sequence numbers match.
More...
Outgoing packets are not equal if their sequence numbers differ.
More...
Get the length of the header, including contributing sources identifiers and header extension, if present.
More...
Ask whether the packet contains padding bytes at the end.
More...
Get the number of octets padding the end of the payload section.
More...
Ask whether the packet is marked (for isntance, is a new talk spurt in some audio profiles).
More...
Ask whether the packet contains header extensions.
More...
Get the number of contributing sources specified in the packet header.
More...
Get the 32-bit identifiers of the contributing sources for the packet as an array, of length
getCSRCsCount().
More...
Get the first 16 bits (in network order) of the header of the RTP header extension.
More...
Get the length (in octets) of the data contained in the header extension.
More...
Get the content of the header extension.
More...
Get the raw packet as it will be sent through the network.
More...
Get the raw packet length, including header, extension, payload and padding.
More...
Protected Member Functions
Free memory allocated for the packet.
More...
Return low level structure for the header of the packet.
More...
Get a pointer to
RTPHeaderExt pointing after the RTP header (fixed part plus contributing sources).
More...
Obtain the absolute timestamp carried in the packet header.
More...
void
setbuffer (const void *src, size_t len, size_t pos)
Protected Attributes
Packet sequence number in host order.
More...
Packet timestamp in host order (includes initial shift).
More...
Offset into packet memory pointing to area for SRTP data.
More...
Lebgth of additional SRTP data.
More...
total length, including header, payload and padding
More...
note: payload (not full packet) size.
More...
Private Member Functions
Copy constructor from objects of its same kind, declared private to avoid its use.
More...
Assignment operator from objects of its same kind, declared private to avoid its use.
More...
void
setCSRCArray (const uint32 *const csrcs, uint16 numcsrc)
Set the list of CSRC identifiers in an RTP packet, switching host to network order.
More...
Detailed Description
RTP packets being sent.
This class is intented to construct packet objects just before they are inserted into the sending queue, so that they are processed in a understandable and format independent manner inside the stack.
- Author
- Federico Montesino Pouzols fedem.nosp@m.p@al.nosp@m.tern..nosp@m.org
Definition at line 510 of file rtppkt.h.
Constructor & Destructor Documentation
OutgoingRTPPkt::OutgoingRTPPkt
(
const uint32 *const
csrcs,
uint16
numcsrc,
const unsigned char *const
hdrext,
uint32
hdrextlen,
const unsigned char *const
data,
size_t
datalen,
uint8
paddinglen = 0
,
)
Construct a new packet to be sent, containing several contributing source identifiers, header extensions and payload.
A new copy in memory (holding all this components along with the fixed header) is created. If the pointer to the SRTP CryptoContext is not NULL and holds a CryptoContext for the SSRC take the SSRC data into account when computing the required memory buffer.
- Parameters
-
csrcs array of countributing source 32-bit identifiers, in host order.
numcsrc number of CSRC identifiers in the array.
hdrext whole header extension.
hdrextlen size of whole header extension, in octets.
data payload.
datalen payload length, in octets.
paddinglen pad packet to a multiple of paddinglen.
- Note
- For efficiency purposes, since this constructor is valid for all packets but is too complex for the common case, two simpler others are provided.
OutgoingRTPPkt::OutgoingRTPPkt
(
const uint32 *const
csrcs,
uint16
numcsrc,
const unsigned char *const
data,
size_t
datalen,
uint8
paddinglen = 0
,
)
Construct a new packet to be sent, containing several contributing source identifiers and payload.
A new copy in memory (holding all this components along with the fixed header) is created. If the pointer to the SRTP CryptoContext is not NULL and holds a CryptoContext for the SSRC take the SSRC data into account when computing the required memory buffer.
- Parameters
-
csrcs array of countributing source 32-bit identifiers, in host order.
numcsrc number of CSRC identifiers in the array.
data payload.
datalen payload length, in octets.
paddinglen pad packet to a multiple of paddinglen.
OutgoingRTPPkt::OutgoingRTPPkt
(
const unsigned char *const
data,
size_t
datalen,
uint8
paddinglen = 0
,
)
Construct a new packet (fast variant, with no contributing sources and no header extension) to be sent.
A new copy in memory (holding the whole packet) is created. If the pointer to the SRTP CryptoContext is not NULL and holds a CryptoContext for the SSRC take the SSRC data into account when computing the required memory buffer.
- Parameters
-
data payload.
datalen payload length, in octets.
paddinglen pad packet to a multiple of paddinglen.
OutgoingRTPPkt::~OutgoingRTPPkt
(
)
inline
Copy constructor from objects of its same kind, declared private to avoid its use.
Member Function Documentation
void RTPPacket::endPacket
(
)
protectedinherited
Free memory allocated for the packet.
uint16 RTPPacket::get2833Duration
(
void
)
inlineinherited
Fetch 2833 duration field.
- Returns
- 2833 duration in native host machine byte order.
Definition at line 488 of file rtppkt.h.
const uint32* RTPPacket::getCSRCs
(
)
const
inlineinherited
Get the 32-bit identifiers of the contributing sources for the packet as an array, of length getCSRCsCount().
- Returns
- An array of CSRC identifiers as they are in the packet (in network order).
Definition at line 215 of file rtppkt.h.
uint16 RTPPacket::getCSRCsCount
(
)
const
inlineinherited
Get the number of contributing sources specified in the packet header.
Definition at line 204 of file rtppkt.h.
const unsigned char* RTPPacket::getHdrExtContent
(
)
const
inlineinherited
Get the content of the header extension.
- Returns
- NULL if the packet has no header extension, otherwise a pointer to the packet header extension content.
Definition at line 258 of file rtppkt.h.
uint32 RTPPacket::getHdrExtSize
(
)
const
inlineinherited
Get the length (in octets) of the data contained in the header extension.
Note that this length does not include the four octets at the beginning of the header extension.
- Returns
- 0 if the packet has no header extension, otherwise the length.
- Note
- 0 is a valid value for this field, so RTPPacket::isExtended() should be used.
Definition at line 246 of file rtppkt.h.
uint16 RTPPacket::getHdrExtUndefined
(
)
const
inlineinherited
Get the first 16 bits (in network order) of the header of the RTP header extension.
Its meaning is undefined at this level.
- Returns
- 0 if the packet has no header extension, otherwise the first 16 bits of the header extension, in network order.
- Note
- 0 could be a valid value for the first 16 bits, in that case RTPPacket::isExtended() should be use.
Definition at line 231 of file rtppkt.h.
Return low level structure for the header of the packet.
- Returns
- RTPFixedHeader pointer to the header of the packet.
Definition at line 324 of file rtppkt.h.
Get a pointer to RTPHeaderExt pointing after the RTP header (fixed part plus contributing sources).
No check for for the X bit is done.
- Returns
- header extension if present, garbage if not.
Definition at line 339 of file rtppkt.h.
uint32 RTPPacket::getHeaderSize
(
)
const
inlineinherited
Get the length of the header, including contributing sources identifiers and header extension, if present.
- Returns
- number of octets.
Definition at line 117 of file rtppkt.h.
uint8 RTPPacket::getPaddingSize
(
)
const
inlineinherited
Get the number of octets padding the end of the payload section.
- Returns
- Padding length in octets.
Definition at line 177 of file rtppkt.h.
const uint8* const RTPPacket::getPayload
(
)
const
inlineinherited
- Returns
- pointer to the payload section of the packet.
Definition at line 124 of file rtppkt.h.
uint32 RTPPacket::getPayloadSize
(
)
const
inlineinherited
- Returns
- length of the payload section, in octets.
Definition at line 131 of file rtppkt.h.
- Returns
- value of the PT header field.
Definition at line 138 of file rtppkt.h.
uint8 RTPPacket::getProtocolVersion
(
)
const
inlineinherited
- Returns
- RTP protocol version of packet.
Definition at line 159 of file rtppkt.h.
Fetch a raw 2833 packet.
- Returns
- low level 2833 data structure.
Definition at line 480 of file rtppkt.h.
const unsigned char* const RTPPacket::getRawPacket
(
)
const
inlineinherited
Get the raw packet as it will be sent through the network.
- Returns
- memory zone where the raw packet structure is stored in.
Definition at line 271 of file rtppkt.h.
uint32 RTPPacket::getRawPacketSize
(
)
const
inlineinherited
Get the raw packet length, including header, extension, payload and padding.
- Returns
- size of the raw packet structure.
Definition at line 281 of file rtppkt.h.
uint32 RTPPacket::getRawPacketSizeSrtp
(
)
const
inlineinherited
uint32 RTPPacket::getRawTimestamp
(
)
const
inlineprotectedinherited
Obtain the absolute timestamp carried in the packet header.
- Returns
- 32-bit timestamp in host order.
Definition at line 351 of file rtppkt.h.
uint16 RTPPacket::getSeqNum
(
)
const
inlineinherited
- Returns
- value of the sequence number header field, in host order.
Definition at line 145 of file rtppkt.h.
size_t RTPPacket::getSizeOfFixedHeader
(
)
const
inlineinherited
uint32 RTPPacket::getTimestamp
(
)
const
inlineinherited
- Returns
- packet timestamp in host order.
Definition at line 152 of file rtppkt.h.
bool RTPPacket::isExtended
(
)
const
inlineinherited
Ask whether the packet contains header extensions.
- Returns
- true if the header extension bit is 1.
Definition at line 196 of file rtppkt.h.
bool RTPPacket::isMarked
(
)
const
inlineinherited
Ask whether the packet is marked (for isntance, is a new talk spurt in some audio profiles).
- Returns
- true is the header marker bit is 1.
Definition at line 187 of file rtppkt.h.
bool RTPPacket::isPadded
(
)
const
inlineinherited
Ask whether the packet contains padding bytes at the end.
- Returns
- true if the header padding bit is 1.
Definition at line 167 of file rtppkt.h.
Outgoing packets are not equal if their sequence numbers differ.
Definition at line 670 of file rtppkt.h.
Assignment operator from objects of its same kind, declared private to avoid its use.
Outgoing packets are equal if their sequence numbers match.
Definition at line 663 of file rtppkt.h.
void OutgoingRTPPkt::protect
(
uint32
ssrc,
)
Called packet is setup.
This private method computes the SRTP data and stores it in the packet. Then encrypt the payload data (ex padding).
void RTPPacket::reComputePayLength
(
bool
padding )
inherited
Re-compute payload length.
This recomputation may be necessary in case of SRTP. We need to decrypt the packet before we can handle padding. See takeInDataPacket
in incqueue.cpp
- Parameters
-
padding If true then set padding flag in RTP header and re-compute payloadSize.
void RTPPacket::set2833Duration
(
uint16
timestamp )
inlineinherited
Set 2833 duration field.
- Parameters
-
timestamp to use, native host machine byte order.
Definition at line 496 of file rtppkt.h.
void RTPPacket::setbuffer
(
const void *
src,
size_t
len,
size_t
pos
)
inlineprotectedinherited
void OutgoingRTPPkt::setCSRCArray
(
const uint32 *const
csrcs,
uint16
numcsrc
)
private
Set the list of CSRC identifiers in an RTP packet, switching host to network order.
void RTPPacket::setExtension
(
bool
e )
inlineprotectedinherited
void OutgoingRTPPkt::setMarker
(
bool
mark )
inline
Specify the value of the marker bit.
By default, the marker bit of outgoing packets is false/0. This method allows to explicity specify and change that value.
- Parameters
-
mark value for the market bit.
Definition at line 648 of file rtppkt.h.
- Parameters
-
pt Packet payload type.
Definition at line 594 of file rtppkt.h.
void OutgoingRTPPkt::setSeqNum
(
uint16
seq )
inline
Sets the sequence number in the header.
- Parameters
-
seq Packet sequence number, in host order.
Definition at line 603 of file rtppkt.h.
void OutgoingRTPPkt::setSSRC
(
uint32
ssrc )
const
inline
Set synchronization source numeric identifier.
- Parameters
-
ssrc 32-bit Synchronization SouRCe numeric identifier, in host order.
Definition at line 626 of file rtppkt.h.
void OutgoingRTPPkt::setSSRCNetwork
(
uint32
ssrc )
const
inline
Set synchronization source numeric identifier.
Special version to save endianness conversion.
- Parameters
-
ssrc 32-bit Synchronization SouRCe numeric identifier, in network order.
Definition at line 637 of file rtppkt.h.
void OutgoingRTPPkt::setTimestamp
(
uint32
pts )
inline
- Parameters
-
pts Packet timestamp, in host order.
Definition at line 613 of file rtppkt.h.
Field Documentation
uint16 RTPPacket::cachedSeqNum
protectedinherited
Packet sequence number in host order.
Definition at line 359 of file rtppkt.h.
uint32 RTPPacket::cachedTimestamp
protectedinherited
Packet timestamp in host order (includes initial shift).
Definition at line 361 of file rtppkt.h.
uint32 RTPPacket::payloadSize
protectedinherited
note: payload (not full packet) size.
Definition at line 382 of file rtppkt.h.
uint32 RTPPacket::srtpDataOffset
protectedinherited
Offset into packet memory pointing to area for SRTP data.
This offset points to the memory where the SRTP protect will store the authentication and MKI data.
Definition at line 369 of file rtppkt.h.
int32 RTPPacket::srtpLength
protectedinherited
Lebgth of additional SRTP data.
Covers the SRTP authentication and MKI data.
Definition at line 376 of file rtppkt.h.
uint32 RTPPacket::total
protectedinherited
total length, including header, payload and padding
Definition at line 379 of file rtppkt.h.
The documentation for this class was generated from the following file: