BitmovinApiSdk\Models\DolbyAtmosDynamicRangeCompressionMode

Synopsis

class DolbyAtmosDynamicRangeCompressionMode extends Enum {
  • // methods
  • public static DolbyAtmosDynamicRangeCompressionMode create()
  • public static DolbyAtmosDynamicRangeCompressionMode AUTO()
  • public static DolbyAtmosDynamicRangeCompressionMode NONE()
  • public static DolbyAtmosDynamicRangeCompressionMode FILM_STANDARD()
  • public static DolbyAtmosDynamicRangeCompressionMode FILM_LIGHT()
  • public static DolbyAtmosDynamicRangeCompressionMode MUSIC_STANDARD()
  • public static DolbyAtmosDynamicRangeCompressionMode MUSIC_LIGHT()
  • public static DolbyAtmosDynamicRangeCompressionMode SPEECH()
}

Hierarchy

Methods

public

  • AUTO() — Film light dynamic range preset except DRC modes are provided as part of Dolby Atmos metadata inside ADM inputs
  • FILM_LIGHT() — Film light dynamic range processing preset
  • FILM_STANDARD() — Film standard dynamic range processing preset
  • MUSIC_LIGHT() — Music light dynamic range processing preset
  • MUSIC_STANDARD() — Music standard dynamic range processing preset
  • NONE() — No dynamic range processing preset
  • SPEECH() — Speech dynamic range processing preset
  • 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