BitmovinApiSdk\Models\DolbyDigitalChannelLayout

Synopsis

class DolbyDigitalChannelLayout extends Enum {
  • // methods
  • public static DolbyDigitalChannelLayout create()
  • public static DolbyDigitalChannelLayout NONE()
  • public static DolbyDigitalChannelLayout MONO()
  • public static DolbyDigitalChannelLayout CL_STEREO()
  • public static DolbyDigitalChannelLayout CL_SURROUND()
  • public static DolbyDigitalChannelLayout CL_3_1()
  • public static DolbyDigitalChannelLayout CL_BACK_SURROUND()
  • public static DolbyDigitalChannelLayout CL_BACK_SURROUND_LFE()
  • public static DolbyDigitalChannelLayout CL_QUAD()
  • public static DolbyDigitalChannelLayout CL_QUAD_LFE()
  • public static DolbyDigitalChannelLayout CL_4_0()
  • public static DolbyDigitalChannelLayout CL_4_1()
  • public static DolbyDigitalChannelLayout CL_5_0()
  • public static DolbyDigitalChannelLayout CL_5_1()
}

Hierarchy

Methods

public

  • CL_3_1() — Channel layout 3.1 (3 front (left + center + right), LFE)
  • CL_4_0() — Channel layout 4.0 (3 front (left + center + right), 1 back center, no LFE)
  • CL_4_1() — Channel layout 4.1 (3 front (left + center + right), 1 back center, LFE)
  • CL_5_0() — Channel layout 5.0 (3 front (left + center + right), 2 side (left + right), no LFE)
  • CL_5_1() — Channel layout 5.1 (3 front (left + center + right), 2 side (left + right), LFE)
  • CL_BACK_SURROUND() — Channel layout Surround (2 front (left + right), 1 back center, no LFE)
  • CL_BACK_SURROUND_LFE() — Channel layout Surround with LFE (2 front (left + right), 1 back center, LFE)
  • CL_QUAD() — Channel layout Quad (2 front (left + right), 2 back (left + right), no LFE)
  • CL_QUAD_LFE() — Channel layout Quad with LFE (2 front (left + right), 2 back (left + right), LFE)
  • CL_STEREO() — Channel layout Stereo
  • CL_SURROUND() — Channel layout 3.0 (3 front (left + center + right), no LFE)
  • MONO() — Channel layout Mono
  • NONE() — No channel layout
  • 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