Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.29 KB

FullBox.md

File metadata and controls

21 lines (15 loc) · 1.29 KB

Openize.IsoBmff.FullBox

Structure for storing data in IsoBmff files with specified box version and flags.

Fields

Name Type Description Notes
version byte An integer that specifies the version of this format of the box.
flags BitArray A map of flags.

Constructors

Name | Description | Parameters ------------ | ------------- | ------------- | ------------- FullBox | Create the box object from the bitstream. | BitStreamReader stream - File stream. FullBox | Create the box object from the bitstream and box type. | BitStreamReader stream - File stream.
BoxType boxtype - Box type integer. FullBox | Create the box object from the bitstream, box type and size. | BitStreamReader stream - File stream.
BoxType boxtype - Box type integer.
ulong size - Box size in bytes. FullBox | Create the box object from the box type, size, version and flags.
This constructor doesn't read data from the stream. | BoxType boxtype - Box type integer.
ulong size - Box size in bytes.
byte version - The version of this format of the box.
int flags - The map of flags.

[Back to API_README]