Class: Cabriolet::Binary::LITStructures::ResetTableHeader

Inherits:
BinData::Record
  • Object
show all
Defined in:
lib/cabriolet/binary/lit_structures.rb

Overview

Reset Table Header (40 bytes)

Provides reset points for LZX decompression

Instance Method Summary collapse

Instance Method Details

#compressed_lengthObject



218
219
220
# File 'lib/cabriolet/binary/lit_structures.rb', line 218

def compressed_length
  (compressed_length_high << 32) | compressed_length_low
end

#uncompressed_lengthObject



214
215
216
# File 'lib/cabriolet/binary/lit_structures.rb', line 214

def uncompressed_length
  (uncompressed_length_high << 32) | uncompressed_length_low
end