Lines Matching refs:this

26 		$info = &$this->getid3->info;
28 $this->fseek($info['avdataoffset']);
32 $wavpackheader = $this->fread(32);
34 if ($this->ftell() >= $info['avdataend']) {
36 } elseif (feof($this->getid3->fp)) {
48 $blockheader_offset = $this->ftell() - 32;
54 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$blockheader_offset.',…
93 …$this->error('Expecting WavPack block size less than "0x100000", found "'.$info['wavpack']['blockh…
113 …$this->error('Expecting WavPack version between "4.2" and "4.16", found version "'.$info['wavpack'…
151 …while (!feof($this->getid3->fp) && ($this->ftell() < ($blockheader_offset + $blockheader_size + 8)…
153 $metablock = array('offset'=>$this->ftell());
154 $metablockheader = $this->fread(2);
155 if (feof($this->getid3->fp)) {
160 $metablock['function_name'] = $this->WavPackMetablockNameLookup($metablock['function_id']);
174 $metablockheader .= $this->fread(2);
189 $metablock['data'] = $this->fread($metablock['size']);
212 … $this->fseek($metablock['offset'] + ($metablock['large_block'] ? 4 : 2) + $metablock['size']);
216 …$this->warning('Unexpected metablock type "0x'.str_pad(dechex($metablock['function_id']), 2, '0', …
217 … $this->fseek($metablock['offset'] + ($metablock['large_block'] ? 4 : 2) + $metablock['size']);
227 …$getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp…
249 …$getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp…
264 …$this->warning('WavPack "Replay Gain" contents not yet handled by getID3() in metablock at offset …
269 …$this->warning('WavPack "Cuesheet" contents not yet handled by getID3() in metablock at offset '.$…
327 …$this->warning('Expecting 16 bytes of WavPack "MD5 Checksum" in metablock at offset '.$metablock['…