BitmovinApiSdk\Models\H264Partition

Synopsis

class H264Partition extends Enum {
  • // methods
  • public static H264Partition create()
  • public static H264Partition NONE()
  • public static H264Partition P8X8()
  • public static H264Partition P4X4()
  • public static H264Partition B8X8()
  • public static H264Partition I8X8()
  • public static H264Partition I4X4()
  • public static H264Partition ALL()
}

Hierarchy

Methods

public

  • ALL() — Consider all possible sizes of macroblocks
  • B8X8() — Consider B-macroblocks with size 8x8, 16X8, 8X16
  • I4X4() — Consider I-macroblocks with size 4x4
  • I8X8() — Consider I-macroblocks with size 8x8
  • NONE() — Consider no macroblocks
  • P4X4() — Consider P-macroblocks with size 4x4, 8X4, 4x8
  • P8X8() — Consider P-macroblocks with size 8x8, 16X8, 8X16
  • 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