Class: BMFF::Box::SoundMediaHeader

Inherits:
Full
  • Object
show all
Defined in:
lib/bmff/box/sound_media_header.rb

Overview

vim: set expandtab tabstop=2 shiftwidth=2 softtabstop=2 autoindent:

Instance Attribute Summary collapse

Attributes inherited from Full

#flags, #version

Attributes inherited from Base

#io, #largesize, #offset, #parent, #size, #type, #usertype

Instance Method Summary collapse

Methods inherited from Base

#actual_size, #container?, #eob?, #parse, register_box, register_uuid_box, #remaining_size, #root, #seek_to_end

Instance Attribute Details

#balanceObject

Returns the value of attribute balance.



5
6
7
# File 'lib/bmff/box/sound_media_header.rb', line 5

def balance
  @balance
end

#reserved1Object

Returns the value of attribute reserved1.



5
6
7
# File 'lib/bmff/box/sound_media_header.rb', line 5

def reserved1
  @reserved1
end

Instance Method Details

#parse_dataObject



8
9
10
11
12
# File 'lib/bmff/box/sound_media_header.rb', line 8

def parse_data
  super
  @balance = io.get_int16
  @reserved1 = io.get_uint16
end