You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
459 B
18 lines
459 B
4 years ago
|
namespace Discord.Audio
|
||
|
{
|
||
|
public struct RTPFrame
|
||
|
{
|
||
|
public readonly ushort Sequence;
|
||
|
public readonly uint Timestamp;
|
||
|
public readonly byte[] Payload;
|
||
|
public readonly bool Missed;
|
||
|
|
||
|
public RTPFrame(ushort sequence, uint timestamp, byte[] payload, bool missed)
|
||
|
{
|
||
|
Sequence = sequence;
|
||
|
Timestamp = timestamp;
|
||
|
Payload = payload;
|
||
|
Missed = missed;
|
||
|
}
|
||
|
}
|
||
|
}
|