Interface ElementDetail

interface ElementDetail {
    EBML_ID: string;
    dataEnd: number;
    dataSize: number;
    dataStart: number;
    level: number;
    schema: Schema;
    sizeEnd: number;
    sizeStart: number;
    tagEnd: number;
    tagStart: number;
}

Properties

EBML_ID: string

hex EBML ID

dataEnd: number

End position of the element content

dataSize: number

dataEnd - dataStart

dataStart: number

Starting position of the element content

level: number

The level within an EBML tree that the element may occur at.

  • is for a recursive level (can be its own child). g: global element (can be found at any level)
schema: Schema
sizeEnd: number

size vint end

sizeStart: number

size vint start

tagEnd: number

End offset position of this tag in the whole buffer

tagStart: number

Start offset position of this tag in the whole buffer

Generated using TypeDoc