Namespace inet::rtp
SenderReport
classRepresents an RTP sender report as contained in an RtcpSenderReportPacket.
Extends
Name | Type | Description |
---|---|---|
cObject | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
NTPTimeStamp | uint64_t |
The ntp time stamp. |
RTPTimeStamp | uint32_t |
The rtp time stamp. |
packetCount | uint32_t |
The number of packets sent. |
byteCount | uint32_t |
The number of (payload) bytes sent. |
Source code
// // Represents an RTP sender report as contained // in an ~RtcpSenderReportPacket. // class SenderReport extends cObject { // The ntp time stamp. uint64_t NTPTimeStamp; // The rtp time stamp. uint32_t RTPTimeStamp; // The number of packets sent. uint32_t packetCount; // The number of (payload) bytes sent. uint32_t byteCount; }File: src/inet/transportlayer/rtp/Reports.msg