BitmovinApiSdk\Models\LimitTransformUnitDepthRecursionMode
Synopsis
class LimitTransformUnitDepthRecursionMode
extends Enum
{
- // methods
- public static LimitTransformUnitDepthRecursionMode create()
- public static LimitTransformUnitDepthRecursionMode DISABLED()
- public static LimitTransformUnitDepthRecursionMode LEVEL_1()
- public static LimitTransformUnitDepthRecursionMode LEVEL_2()
- public static LimitTransformUnitDepthRecursionMode LEVEL_3()
- public static LimitTransformUnitDepthRecursionMode LEVEL_4()
- // Inherited methods from Enum
- public void __construct()
- public mixed getValue()
- public mixed getKey()
- public string __toString()
- public final bool equals()
- public static array keys()
- public static array values()
- public static array toArray()
- public static bool isValidKey()
- public static mixed search()
- public static LimitTransformUnitDepthRecursionMode __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- DISABLED() — Disable early exit from transform unit dept recursion
- LEVEL_1() — Decides to recurse to next higher depth based on cost comparison of full size transform unit and split transform unit.
- LEVEL_2() — Based on first split sub TUs depth, limits recursion of other split sub TUs.
- LEVEL_3() — Based on the average depth of the co-located and the neighbor CUs TU depth, limits recursion of the current CU.
- LEVEL_4() — Uses the depth of the co-located CUs TU depth to limit the 1st sub TU depth. The 1st sub TU depth is taken as the limiting depth for the other sub TUs.
- create()
Inherited from BitmovinApiSdk\Common\Enum
public
- __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
- __toString()
- equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
- getKey() — Returns the enum key (i.e. the constant name).
- getValue()
- isValidKey() — Check if is valid enum key
- jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
- keys() — Returns the names (keys) of all constants in the Enum class
- search() — Return key for value
- toArray() — Returns all possible values as an array
- values() — Returns instances of the Enum class of all Enum constants