Method: IO#read__UI32
- Defined in:
- lib/flv/core_extensions.rb
#read__UI32(position = nil) ⇒ Object
79 80 81 82 |
# File 'lib/flv/core_extensions.rb', line 79 def read__UI32(position = nil) seek position unless position.nil? (readchar << 24) + (readchar << 16) + (readchar << 8) + readchar end |