Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.33 KB

File metadata and controls

29 lines (21 loc) · 1.33 KB

Openize.IsoBmff.ItemLocationBox

The item location box provides a directory of resources in this or other files, by locating their container, their offset within that container, and their length.

Properties

Name Type Description Notes
ToString string Text summary of the box.
Children ObservableCollection Observable collection of the location items.

Fields

Name Type Description Notes
offset_size byte Indicates the length in bytes of the offset field.
length_size byte Indicates the length in bytes of the length field.
base_offset_size byte Indicates the length in bytes of the base_offset field.
index_size byte Indicates the length in bytes of the extent.index field.
item_count uint Counts the number of items in the location item array.
items IlocItem[] Array of the location items.

Constructors

Name Description Parameters
ItemLocationBox Create the box object from the bitstream and box size. BitStreamReader stream - File stream.
ulong size - Box size in bytes.

[Back to API_README]