Lines Matching refs:getid3

1927 	protected $getid3;                       // pointer  variable in getid3_handler
1965 * @param getID3 $getid3
1968 public function __construct(getID3 $getid3, $call_module=null) { argument
1969 $this->getid3 = $getid3;
1993 $saved_avdataoffset = $this->getid3->info['avdataoffset'];
1994 $saved_avdataend = $this->getid3->info['avdataend'];
1995 …$saved_filesize = (isset($this->getid3->info['filesize']) ? $this->getid3->info['filesize'] : …
1998 $this->getid3->info['avdataoffset'] = 0;
1999 $this->getid3->info['avdataend'] = $this->getid3->info['filesize'] = $this->data_string_length;
2005 $this->getid3->info['avdataoffset'] = $saved_avdataoffset;
2006 $this->getid3->info['avdataend'] = $saved_avdataend;
2007 $this->getid3->info['filesize'] = $saved_filesize;
2029 return ftell($this->getid3->fp);
2060 …if (($this->getid3->memory_limit > 0) && (($bytes / $this->getid3->memory_limit) > 0.99)) { // ena…
2061 …rom '.$this->ftell().') that is more than available PHP memory ('.$this->getid3->memory_limit.')',…
2063 $part = fread($this->getid3->fp, $bytes);
2100 $pos = $this->getid3->info['filesize'] + $bytes;
2106 return fseek($this->getid3->fp, $bytes, $whence);
2144 $thischar = fgetc($this->getid3->fp);
2147 fseek($this->getid3->fp, -1, SEEK_CUR);
2154 if (feof($this->getid3->fp)) {
2171 return feof($this->getid3->fp);
2189 $this->getid3->info['error'][] = $text;
2200 return $this->getid3->warning($text);
2225 if ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_NONE) {
2230 } elseif ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_INLINE) {
2242 …$dir = rtrim(str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $this->getid3->option_save_attachm…
2255 $buffersize = ($this->data_string_flag ? $length : $this->getid3->fread_buffer_size());