Struct RtpFrame
表示一个 RTP 帧。
public readonly struct RtpFrame
- Inherited Members
Constructors
RtpFrame(ushort, uint, byte[], bool)
初始化 RtpFrame 结构的新实例。
public RtpFrame(ushort sequence, uint timestamp, byte[] payload, bool missed)
Parameters
Properties
Missed
获取此帧是否丢失。
public bool Missed { get; init; }
Property Value
Payload
获取此帧的有效负载。
public byte[] Payload { get; init; }
Property Value
- byte[]
Sequence
获取此帧的序列号。
public ushort Sequence { get; init; }
Property Value
Timestamp
获取此帧的时间戳。
public uint Timestamp { get; init; }