Struct VoiceReceiveEventArgs
public readonly ref struct VoiceReceiveEventArgs
- Inherited Members
Constructors
VoiceReceiveEventArgs(ReadOnlySpan<byte>, uint, uint, ushort)
public VoiceReceiveEventArgs(ReadOnlySpan<byte> frame, uint ssrc, uint timestamp, ushort sequenceNumber)
Parameters
frameReadOnlySpan<byte>ssrcuinttimestampuintsequenceNumberushort
Properties
Frame
The voice frame data.
public ReadOnlySpan<byte> Frame { get; }
Property Value
SequenceNumber
The sequence number of the voice frame.
public ushort SequenceNumber { get; }
Property Value
Ssrc
The synchronization source (SSRC) of the sender of the voice frame.
public uint Ssrc { get; }
Property Value
Timestamp
The timestamp of the voice frame.
public uint Timestamp { get; }