Class RTCPSenderReportState
public sealed class RTCPSenderReportState : IMessage<RTCPSenderReportState>, IEquatable<RTCPSenderReportState>, IDeepCloneable<RTCPSenderReportState>, IBufferMessage, IMessage
- Inheritance
-
RTCPSenderReportState
- Implements
-
IMessage<RTCPSenderReportState>IDeepCloneable<RTCPSenderReportState>IBufferMessageIMessage
- Inherited Members
Constructors
RTCPSenderReportState()
public RTCPSenderReportState()
RTCPSenderReportState(RTCPSenderReportState)
public RTCPSenderReportState(RTCPSenderReportState other)
Parameters
otherRTCPSenderReportState
Fields
AtAdjustedFieldNumber
Field number for the "at_adjusted" field.
public const int AtAdjustedFieldNumber = 5
Field Value
AtFieldNumber
Field number for the "at" field.
public const int AtFieldNumber = 4
Field Value
NtpTimestampFieldNumber
Field number for the "ntp_timestamp" field.
public const int NtpTimestampFieldNumber = 3
Field Value
OctetsFieldNumber
Field number for the "octets" field.
public const int OctetsFieldNumber = 7
Field Value
PacketsFieldNumber
Field number for the "packets" field.
public const int PacketsFieldNumber = 6
Field Value
RtpTimestampExtFieldNumber
Field number for the "rtp_timestamp_ext" field.
public const int RtpTimestampExtFieldNumber = 2
Field Value
RtpTimestampFieldNumber
Field number for the "rtp_timestamp" field.
public const int RtpTimestampFieldNumber = 1
Field Value
Properties
At
time at which this happened
public long At { get; set; }
Property Value
AtAdjusted
public long AtAdjusted { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
NtpTimestamp
public ulong NtpTimestamp { get; set; }
Property Value
Octets
public ulong Octets { get; set; }
Property Value
Packets
public uint Packets { get; set; }
Property Value
Parser
public static MessageParser<RTCPSenderReportState> Parser { get; }
Property Value
- MessageParser<RTCPSenderReportState>
RtpTimestamp
public uint RtpTimestamp { get; set; }
Property Value
RtpTimestampExt
public ulong RtpTimestampExt { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
- int
The number of bytes required to write this message to a coded output stream.
Clone()
Creates a deep clone of this object.
public RTCPSenderReportState Clone()
Returns
- RTCPSenderReportState
A deep clone of this object.
Equals(RTCPSenderReportState)
public bool Equals(RTCPSenderReportState other)
Parameters
otherRTCPSenderReportState
Returns
Equals(object)
public override bool Equals(object other)
Parameters
otherobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
public void MergeFrom(CodedInputStream input)
Parameters
inputCodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(RTCPSenderReportState)
Merges the given message into this one.
public void MergeFrom(RTCPSenderReportState other)
Parameters
otherRTCPSenderReportState
Remarks
See the user guide for precise merge semantics.
ToString()
public override string ToString()
Returns
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
public void WriteTo(CodedOutputStream output)
Parameters
outputCodedOutputStreamCoded output stream to write the data to. Must not be null.