Class: BMFF::Box::VideoMediaHeader
- Defined in:
- lib/bmff/box/video_media_header.rb
Overview
vim: set expandtab tabstop=2 shiftwidth=2 softtabstop=2 autoindent:
Instance Attribute Summary collapse
-
#graphicsmode ⇒ Object
Returns the value of attribute graphicsmode.
-
#opcolor ⇒ Object
Returns the value of attribute opcolor.
Attributes inherited from Full
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, #remaining_size, #seek_to_end
Instance Attribute Details
#graphicsmode ⇒ Object
Returns the value of attribute graphicsmode.
5 6 7 |
# File 'lib/bmff/box/video_media_header.rb', line 5 def graphicsmode @graphicsmode end |
#opcolor ⇒ Object
Returns the value of attribute opcolor.
5 6 7 |
# File 'lib/bmff/box/video_media_header.rb', line 5 def opcolor @opcolor end |
Instance Method Details
#parse_data ⇒ Object
8 9 10 11 12 |
# File 'lib/bmff/box/video_media_header.rb', line 8 def parse_data super @graphicsmode = io.get_uint16 @opcolor = [io.get_uint16, io.get_uint16, io.get_uint16] end |