Class MediaPacket

Definition

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

Represents a packet for multimedia.

C#
Copy
public abstract class MediaPacket : IDisposable
Inheritance
MediaPacket
Implements
System.IDisposable

Properties

View Source

Buffer

Gets the buffer of the packet.

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

The IMediaBuffer allocated to the packet. This property will return null if the packet is in the raw video format.

Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

API Level: 3
View Source

BufferFlags

Gets or sets the buffer flags of the packet.

Declaration
C#
Copy
public MediaPacketBufferFlags BufferFlags { get; set; }
Property Value
Type Description
MediaPacketBufferFlags
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

InvalidOperationException

The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 3
View Source

BufferWrittenLength

Gets or sets a length of data written in the Buffer.

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

The MediaPacket has already been disposed of.

ArgumentOutOfRangeException

The value specified for this property is less than zero or greater than the length of the Buffer.

InvalidOperationException

The MediaPacket has VideoPlanes instead of Buffer.
-or-
The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 3
View Source

Dts

Gets or sets the DTS(Decoding Time Stamp) value of the current packet.

Declaration
C#
Copy
public ulong Dts { get; set; }
Property Value
Type Description
UInt64
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

InvalidOperationException

The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 3
View Source

Flip

Gets or sets the flip value of the current packet.

Declaration
C#
Copy
public Flips Flip { get; set; }
Property Value
Type Description
Flips
Remarks

None will be ignored in set case. It's not supported in Native FW.

Exceptions
Type Condition
System.ArgumentException

The specified value to set is invalid.

ObjectDisposedException

The MediaPacket has already been disposed of.

InvalidOperationException

The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 5
View Source

Format

Gets the media format of the current packet.

Declaration
C#
Copy
public MediaFormat Format { get; }
Property Value
Type Description
MediaFormat
API Level: 3
View Source

IsDisposed

Gets a value indicating whether the packet has been disposed of.

Declaration
C#
Copy
public bool IsDisposed { get; }
Property Value
Type Description
Boolean

true if the packet has been disposed of; otherwise, false.

API Level: 3
View Source

IsEncoded

Gets a value indicating whether the packet is the encoded type.

Declaration
C#
Copy
public bool IsEncoded { get; }
Property Value
Type Description
Boolean

true if the packet is the encoded type; otherwise, false.

Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

API Level: 3
View Source

Pts

Gets or sets the PTS(Presentation Time Stamp) value of the current packet.

Declaration
C#
Copy
public ulong Pts { get; set; }
Property Value
Type Description
UInt64
Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

InvalidOperationException

The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 3
View Source

Rotation

Gets or sets the rotation value of the current packet.

Declaration
C#
Copy
public Rotation Rotation { get; set; }
Property Value
Type Description
Rotation
Exceptions
Type Condition
System.ArgumentException

The specified value to set is invalid.

ObjectDisposedException

The MediaPacket has already been disposed of.

InvalidOperationException

The MediaPacket is not in the writable state, which means it is being used by another module.

API Level: 5
View Source

VideoPlanes

Gets the video planes of the packet.

Declaration
C#
Copy
public MediaPacketVideoPlane[] VideoPlanes { get; }
Property Value
Type Description
MediaPacketVideoPlane[]

The MediaPacketVideoPlanes allocated to the packet. This property will return null if the packet is not in the raw video format.

Exceptions
Type Condition
ObjectDisposedException

The MediaPacket has already been disposed of.

See Also
API Level: 3

Methods

View Source

Create(MediaFormat)

Creates an object of the MediaPacket with the specified MediaFormat.

Declaration
C#
Copy
public static MediaPacket Create(MediaFormat format)
Parameters
Type Name Description
MediaFormat format

The media format for the new packet.

Returns
Type Description
MediaPacket

A new MediaPacket object.

API Level: 3
View Source

Dispose()

Releases all resources used by the MediaPacket object.

Declaration
C#
Copy
public void Dispose()
Exceptions
Type Condition
InvalidOperationException

The MediaPacket can not be disposed, which means it is being used by another module.

API Level: 3
View Source

Dispose(Boolean)

Releases the resources used by the MediaPacket object.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

true to release both managed and unmanaged resources; false to release only unmanaged resources.

API Level: 3
View Source

Finalize()

Finalizes an instance of the MediaPacket class.

Declaration
C#
Copy
protected void Finalize()

Implements

System.IDisposable