BitmovinApiSdk\Models\Av1AdaptiveQuantMode

Synopsis

class Av1AdaptiveQuantMode extends Enum {
  • // methods
  • public static Av1AdaptiveQuantMode create()
  • public static Av1AdaptiveQuantMode OFF()
  • public static Av1AdaptiveQuantMode VARIANCE()
  • public static Av1AdaptiveQuantMode COMPLEXITY()
  • public static Av1AdaptiveQuantMode CYCLIC_REFRESH()
  • public static Av1AdaptiveQuantMode DELTA_QUANT()
}

Hierarchy

Methods

public

  • COMPLEXITY() — AV1 has a segment based feature that allows the encoder to adaptively change quantization parameter for each segment within a frame
  • CYCLIC_REFRESH() — AV1 has a segment based feature that allows the encoder to adaptively change quantization parameter for each segment within a frame
  • DELTA_QUANT() — AV1 has a segment based feature that allows the encoder to adaptively change quantization parameter for each segment within a frame
  • OFF() — AV1 has a segment based feature that allows the encoder to adaptively change quantization parameter for each segment within a frame
  • VARIANCE() — AV1 has a segment based feature that allows the encoder to adaptively change quantization parameter for each segment within a frame
  • 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
  • toArray() — Returns all possible values as an array
  • values() — Returns instances of the Enum class of all Enum constants