Home
last modified time | relevance | path

Searched refs:SpeexBandModeLookup (Results 1 – 1 of 1) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.ogg.php123 …$info['speex']['band_type'] = $this->SpeexBandModeLookup($info['ogg']['pageheader'][$oggpagein…
828 public static function SpeexBandModeLookup($mode) { function in getid3_ogg
829 static $SpeexBandModeLookup = array();
830 if (empty($SpeexBandModeLookup)) {
831 $SpeexBandModeLookup[0] = 'narrow';
832 $SpeexBandModeLookup[1] = 'wide';
833 $SpeexBandModeLookup[2] = 'ultra-wide';
835 return (isset($SpeexBandModeLookup[$mode]) ? $SpeexBandModeLookup[$mode] : null);