class BMFF::Box::TrackSelection

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

Attributes

attribute_list[RW]
switch_group[RW]

Public Instance Methods

parse_data() click to toggle source
Calls superclass method BMFF::Box::Full#parse_data
# File lib/bmff/box/track_selection.rb, line 8
def parse_data
  super
  @switch_group = io.get_int32
  @attribute_list = []
  until eob?
    @attribute_list << io.get_ascii(4)
  end
end