Interface IRtpHeaderExtension
The interface that all rtp header extensions must implement.
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public interface IRtpHeaderExtension
Properties
Id
Gets the header extension ID.
Declaration
byte[] Id { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Length
Gets the length of the header extension in 32-bit words.
Declaration
int Length { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
FillBuffer(DataBuffer, Int32)
Serialize the header extension to a buffer.
Declaration
void FillBuffer(DataBuffer buffer, int offset)
Parameters
Type | Name | Description |
---|---|---|
DataBuffer | buffer | The buffer. |
System.Int32 | offset | The offset to start writing at. |