class BMFF::Box::SampleDescription
Public Instance Methods
to_s()
click to toggle source
# File lib/bmffglitch/bmffex.rb, line 89 def to_s sio = StringIO.new("", "r+") sio.set_encoding("ascii-8bit") sio.extend(BMFF::BinaryAccessor) sio.write_uint32(@entry_count) compose(sio.string + @children.map {|box| box.to_s}.join) end