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

A module representing an avcC box.

Summary

Functions

Creates a new avcC box from parameter sets.

Types

@type new_opts() :: [{:nalu_length_size, integer()}]
@type t() :: %ExMP4.Box.Avcc{
  avc_level: non_neg_integer(),
  avc_profile_indication: non_neg_integer(),
  nalu_length_size: pos_integer(),
  ppss: [binary()],
  profile_compatibility: non_neg_integer(),
  spss: [binary()]
}

Functions

Link to this function

new(spss, ppss, opts \\ [])

View Source
@spec new([binary()], [binary()], new_opts()) :: t()

Creates a new avcC box from parameter sets.