View Source ExMP4.Box.Stsd (MP4 Reader and Writer v0.6.0)

A module representing an stsd box.

The sample description table gives detailed information about the coding type used, and any initialization information needed for that coding.

Summary

Types

@type t() :: %ExMP4.Box.Stsd{
  avc1: ExMP4.Box.Avc.t() | nil,
  avc3: ExMP4.Box.Avc.t() | nil,
  flags: integer(),
  hev1: ExMP4.Box.Hevc.t() | nil,
  hvc1: ExMP4.Box.Hevc.t() | nil,
  mp4a: ExMP4.Box.Mp4a.t() | nil,
  version: integer()
}