Class MediaPacketVideoPlane

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.dll
API Level:
3

Represents a video plane for the MediaPacket. This class is used if and only if the format of the packet is the raw video.

C#
Copy
public class MediaPacketVideoPlane
Inheritance
MediaPacketVideoPlane

Properties

View Source

Buffer

Gets the buffer of the current video plane.

Declaration
C#
Copy
public IMediaBuffer Buffer { get; }
Property Value
Type Description
IMediaBuffer
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket that owns the current buffer has already been disposed of.

API Level: 3
View Source

StrideHeight

Gets the stride height of the current video plane.

Declaration
C#
Copy
public int StrideHeight { get; }
Property Value
Type Description
System.Int32
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket that owns the current buffer has already been disposed of.

API Level: 3
View Source

StrideWidth

Gets the stride width of the current video plane.

Declaration
C#
Copy
public int StrideWidth { get; }
Property Value
Type Description
System.Int32
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket that owns the current buffer has already been disposed of.

API Level: 3