Interface IVideoFrameStorage
Interface for a storage of a single video frame.
Namespace: Microsoft.MixedReality.WebRTC
Assembly: Microsoft.MixedReality.WebRTC.dll
Syntax
public interface IVideoFrameStorage
Properties
| Improve this Doc View SourceBuffer
Raw storage buffer of capacity Capacity.
Declaration
byte[] Buffer { get; }
Property Value
Type | Description |
---|---|
Byte[] |
Capacity
Storage capacity, in bytes.
Declaration
ulong Capacity { get; set; }
Property Value
Type | Description |
---|---|
UInt64 |
Height
Frame height, in pixels.
Declaration
uint Height { get; set; }
Property Value
Type | Description |
---|---|
UInt32 |
Width
Frame width, in pixels.
Declaration
uint Width { get; set; }
Property Value
Type | Description |
---|---|
UInt32 |