Class AdaptiveVariants

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll
API Level:
5

Provides the ability to control the maximum limit of the available streaming variant for Player.

C#
Copy
public class AdaptiveVariants : object
Inheritance
AdaptiveVariants

Properties

View Source

AvailableAdaptiveVariants

Retrieves all the available adaptive variants.

Declaration
C#
Copy
public IEnumerable<VariantInfo> AvailableAdaptiveVariants { get; }
Property Value
Type Description
IEnumerable<VariantInfo>

It returns a list contained all the available adaptive variants.

See Also
API Level: 5

Methods

View Source

GetMaxLimit()

Gets the maximum limit of the streaming variant.

Declaration
C#
Copy
public VariantInfo GetMaxLimit()
Returns
Type Description
VariantInfo

The VariantInfo containing the variant information.

API Level: 5
View Source

SetMaxLimit(Int32, Int32, Int32)

Sets the maximum limit of the streaming variant.

Declaration
C#
Copy
public void SetMaxLimit(int bandwidth, int width = null, int height = null)
Parameters
Type Name Description
Int32 bandwidth
Int32 width
Int32 height
See Also
API Level: 5

Extension Methods