Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
Represents a video plane for the MediaPacket.
This class is used if and only if the format of the packet is the raw video.
public class MediaPacketVideoPlane
- Inheritance
-
object
MediaPacketVideoPlane
Properties
View Source
Gets the buffer of the current video plane.
Declaration
public IMediaBuffer Buffer { get; }
Property Value
Exceptions
Type |
Condition |
System.ObjectDisposedException |
The MediaPacket that owns the current buffer has already been disposed of.
|
View Source
Gets the stride height of the current video plane.
Declaration
public int StrideHeight { get; }
Property Value
Exceptions
Type |
Condition |
System.ObjectDisposedException |
The MediaPacket that owns the current buffer has already been disposed of.
|
View Source
Gets the stride width of the current video plane.
Declaration
public int StrideWidth { get; }
Property Value
Exceptions
Type |
Condition |
System.ObjectDisposedException |
The MediaPacket that owns the current buffer has already been disposed of.
|