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 |
The ntp time stamp. |
RTPTimeStamp | uint32 |
The rtp time stamp. |
packetCount | uint32 |
The number of packets sent. |
byteCount | uint32 |
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 NTPTimeStamp; // The rtp time stamp. uint32 RTPTimeStamp; // The number of packets sent. uint32 packetCount; // The number of (payload) bytes sent. uint32 byteCount; }File: src/inet/transportlayer/rtp/Reports.msg