Class: shaka.util.DataViewReader

Constructor

new DataViewReader(dataViewnon-null, endianness)

Creates a DataViewReader, which abstracts a DataView object.
Parameters:
Name Type Description
dataView DataView The DataView.
endianness shaka.util.DataViewReader.Endianness The endianness.
Source:

Members

(static) Endianness :number

Endianness.
Type:
  • number
Properties:
Name Value Type Description
BIG_ENDIAN 0 number
LITTLE_ENDIAN 1 number
Source:

(private, non-null) dataView_ :DataView

Type:
  • DataView
Source:

(private) littleEndian_ :boolean

Type:
  • boolean
Source:

(private) position_ :number

Type:
  • number
Source:

Methods

(private) createDataSlice_(start, end) → (non-null) {ArrayBuffer}

Creates a copy of the DataView in a similar way to ArrayBuffer.slice.
Parameters:
Name Type Description
start number
end number
Source:
Returns:
Type
ArrayBuffer

getLength() → {number}

Gets the byte length of the DataView.
Source:
Returns:
Type
number

getPosition() → {number}

Gets the current byte position.
Source:
Returns:
Type
number

hasMoreData() → {boolean}

Source:
Returns:
True if the reader has more data, false otherwise.
Type
boolean

readBytes(bytes) → (non-null) {Uint8Array}

Reads the specified number of raw bytes.
Parameters:
Name Type Description
bytes number The number of bytes to read.
Source:
Throws:
when reading past the end of the data view.
Type
shaka.util.Error
Returns:
Type
Uint8Array

readInt32() → {number}

Reads a signed 32 bit integer, and advances the reader.
Source:
Throws:
when reading past the end of the data view.
Type
shaka.util.Error
Returns:
The integer.
Type
number

readTerminatedString() → {string}

Keeps reading until it reaches a byte that equals to zero. The text is assumed to be UTF-8.
Source:
Returns:
Type
string

readUint8() → {number}

Reads an unsigned 8 bit integer, and advances the reader.
Source:
Throws:
when reading past the end of the data view.
Type
shaka.util.Error
Returns:
The integer.
Type
number

readUint16() → {number}

Reads an unsigned 16 bit integer, and advances the reader.
Source:
Throws:
when reading past the end of the data view.
Type
shaka.util.Error
Returns:
The integer.
Type
number

readUint32() → {number}

Reads an unsigned 32 bit integer, and advances the reader.
Source:
Throws:
when reading past the end of the data view.
Type
shaka.util.Error
Returns:
The integer.
Type
number

readUint64() → {number}

Reads an unsigned 64 bit integer, and advances the reader.
Source:
Throws:
when reading past the end of the data view or when reading an integer too large to store accurately in JavaScript.
Type
shaka.util.Error
Returns:
The integer.
Type
number

skip(bytes)

Skips the specified number of bytes.
Parameters:
Name Type Description
bytes number The number of bytes to skip.
Source:
Throws:
when skipping past the end of the data view.
Type
shaka.util.Error

(private) throwOutOfBounds_()

Source:
Throws: