Struct SpeexDSPJitterBufferPacket
Definition of an incoming packet.
Inherited Members
Namespace: SpeexDSPSharp.Core.Structures
Assembly: SpeexDSPSharp.Core.dll
Syntax
public struct SpeexDSPJitterBufferPacket
Constructors
| Edit this page View SourceSpeexDSPJitterBufferPacket(byte[], uint)
Constructs a new SpeexDSPJitterBufferPacket(byte[], uint).
Declaration
public SpeexDSPJitterBufferPacket(byte[] inputData, uint length)
Parameters
Type | Name | Description |
---|---|---|
byte[] | inputData | The data you want to input/output. |
uint | length | The length of the input data. |
Fields
| Edit this page View Sourcedata
Data bytes contained in the packet.
Declaration
public byte* data
Field Value
Type | Description |
---|---|
byte* |
len
Length of the packet in bytes.
Declaration
public uint len
Field Value
Type | Description |
---|---|
uint |
sequence
RTP Sequence number if available (0 otherwise).
Declaration
public ushort sequence
Field Value
Type | Description |
---|---|
ushort |
span
Time covered by the packet (same units as timestamp).
Declaration
public uint span
Field Value
Type | Description |
---|---|
uint |
timestamp
Timestamp for the packet
Declaration
public uint timestamp
Field Value
Type | Description |
---|---|
uint |
user_data
Put whatever data you like here (it's ignored by the jitter buffer).
Declaration
public uint user_data
Field Value
Type | Description |
---|---|
uint |