class BMFF::Box::CleanAperture

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

Attributes

clean_aperture_height_d[RW]
clean_aperture_height_n[RW]
clean_aperture_width_d[RW]
clean_aperture_width_n[RW]
horiz_off_d[RW]
horiz_off_n[RW]
vert_off_d[RW]
vert_off_n[RW]

Public Instance Methods

parse_data() click to toggle source
Calls superclass method BMFF::Box::Base#parse_data
# File lib/bmff/box/clean_aperture.rb, line 9
def parse_data
  super
  @clean_aperture_width_n = io.get_uint32
  @clean_aperture_width_d = io.get_uint32
  @clean_aperture_height_n = io.get_uint32
  @clean_aperture_height_d = io.get_uint32
  @horiz_off_n = io.get_uint32
  @horiz_off_d = io.get_uint32
  @vert_off_n = io.get_uint32
  @vert_off_d = io.get_uint32
end