_readNalUnit() {
        let length = this.extraData.readUInt16BE(this._pos);
        this._pos += 2;
        let unit = this.extraData.subarray(this._pos, this._pos + length);
        this._pos += length;