Module: Mp3Info::Mp3FileMethods

Defined in:
lib/mp3info/extension_modules.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#get32bitsObject



21
22
23
# File 'lib/mp3info/extension_modules.rb', line 21

def get32bits
  (getbyte << 24) + (getbyte << 16) + (getbyte << 8) + getbyte
end

#get_syncsafeObject



25
26
27
# File 'lib/mp3info/extension_modules.rb', line 25

def get_syncsafe
  (getbyte << 21) + (getbyte << 14) + (getbyte << 7) + getbyte
end