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

A module representing an stsz box.

This box contains the sample count and a table giving the size in bytes of each sample.

Summary

Types

@type t() :: %ExMP4.Box.Stsz{
  entries: [non_neg_integer()],
  flags: integer(),
  sample_count: non_neg_integer(),
  sample_size: non_neg_integer(),
  version: integer()
}