Class SenderReport

File: src/inet/transportlayer/rtp/reports.msg

C++ definition

Represents an RTP sender report as contained in an RTCPSenderReportPacket.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

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
{
    @customize(true);

    // 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;
}