Class: BMFF::Box::DataReference
- Includes:
- Container
- Defined in:
- lib/bmff/box/data_reference.rb
Overview
vim: set expandtab tabstop=2 shiftwidth=2 softtabstop=2 autoindent:
Instance Attribute Summary collapse
-
#entry_count ⇒ Object
Returns the value of attribute entry_count.
Attributes included from Container
Attributes inherited from Full
Attributes inherited from Base
#io, #largesize, #offset, #parent, #size, #type, #usertype
Instance Method Summary collapse
Methods included from Container
#add_child, #container?, #find, #find_all, #parse_children, #select_descendants
Methods inherited from Base
#actual_size, #container?, #eob?, #parse, register_box, #remaining_size, #seek_to_end
Instance Attribute Details
#entry_count ⇒ Object
Returns the value of attribute entry_count.
5 6 7 |
# File 'lib/bmff/box/data_reference.rb', line 5 def entry_count @entry_count end |
Instance Method Details
#parse_data ⇒ Object
9 10 11 12 13 |
# File 'lib/bmff/box/data_reference.rb', line 9 def parse_data super @entry_count = io.get_uint32 parse_children end |