Lines Matching refs:info

26 		$info = &$this->getid3->info;
28 $this->fseek($info['avdataoffset']);
33 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].…
36 $info['fileformat'] = 'shn';
37 $info['audio']['dataformat'] = 'shn';
38 $info['audio']['lossless'] = true;
39 $info['audio']['bitrate_mode'] = 'vbr';
41 $info['shn']['version'] = getid3_lib::LittleEndian2Int(substr($ShortenHeader, 4, 1));
43 $this->fseek($info['avdataend'] - 12);
45 $info['shn']['seektable']['present'] = substr($SeekTableSignatureTest, 4, 8) == 'SHNAMPSK';
46 if ($info['shn']['seektable']['present']) {
47 …$info['shn']['seektable']['length'] = getid3_lib::LittleEndian2Int(substr($SeekTableSignatureTest,…
48 $info['shn']['seektable']['offset'] = $info['avdataend'] - $info['shn']['seektable']['length'];
49 $this->fseek($info['shn']['seektable']['offset']);
54 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['shn']['seektabl…
75 $SeekTableData = $this->fread($info['shn']['seektable']['length'] - 16);
76 $info['shn']['seektable']['entry_count'] = floor(strlen($SeekTableData) / 80);
134 …$commandline = GETID3_HELPERAPPSDIR.'shorten.exe -x "'.$info['filenamepath'].'" - | '.GETID3_HELPE…
147 …/bin/shorten') ? '/usr/local/bin/' : '' ) . 'shorten -x '.escapeshellarg($info['filenamepath']).' …
162 $info['audio']['channels'] = $DecodedWAVFORMATEX['channels'];
163 $info['audio']['bits_per_sample'] = $DecodedWAVFORMATEX['bits_per_sample'];
164 $info['audio']['sample_rate'] = $DecodedWAVFORMATEX['sample_rate'];
168 …$info['playtime_seconds'] = getid3_lib::LittleEndian2Int(substr($output, 20 + 4 + $fmt_size, 4)) /…
177 …$info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) / $info['playtime_second…