Method: AMFStringBuffer#write__SI16
- Defined in:
- lib/flv/amf_string_buffer.rb
#write__SI16(value) ⇒ Object
269 270 271 272 |
# File 'lib/flv/amf_string_buffer.rb', line 269 def write__SI16(value) write [(value >> 8) & 0xff].pack('c') write [value & 0xff].pack('c') end |