Structure for storing data in IsoBmff files with specified box version and flags.
| Name | Type | Description | Notes |
|---|---|---|---|
| version | byte | An integer that specifies the version of this format of the box. | |
| flags | BitArray | A map of flags. |
| 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. long 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. long size - Box size in bytes. byte version - The version of this format of the box. int flags - The map of flags. |