Lines Matching refs:info

27 		$info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
34 $info['tiff']['byte_order'] = 'Intel';
37 $info['tiff']['byte_order'] = 'Motorola';
40 …alid TIFF byte order identifier ('.substr($TIFFheader, 0, 2).') at offset '.$info['avdataoffset']);
44 $info['fileformat'] = 'tiff';
45 $info['video']['dataformat'] = 'tiff';
46 $info['video']['lossless'] = true;
47 $info['tiff']['ifd'] = array();
52 $nextIFDoffset = $this->TIFFendian2Int($this->fread(4), $info['tiff']['byte_order']);
58 $this->fseek($info['avdataoffset'] + $nextIFDoffset);
59 $CurrentIFD['fieldcount'] = $this->TIFFendian2Int($this->fread(2), $info['tiff']['byte_order']);
62 …$CurrentIFD['fields'][$i]['raw']['tag'] = $this->TIFFendian2Int($this->fread(2), $info['tiff'…
63 …$CurrentIFD['fields'][$i]['raw']['type'] = $this->TIFFendian2Int($this->fread(2), $info['tiff'…
64 …$CurrentIFD['fields'][$i]['raw']['length'] = $this->TIFFendian2Int($this->fread(4), $info['tiff'…
71 …TIFFendian2Int(substr($CurrentIFD['fields'][$i]['raw']['valoff'], 0, 1), $info['tiff']['byte_order…
73 …et'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
81 …et'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
87 …TIFFendian2Int(substr($CurrentIFD['fields'][$i]['raw']['valoff'], 0, 2), $info['tiff']['byte_order…
89 …et'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
95 …e'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
97 …et'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
103 …et'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valoff'], $info['tiff']['byte_order…
121 $info['tiff']['ifd'][] = $CurrentIFD;
123 $nextIFDoffset = $this->TIFFendian2Int($this->fread(4), $info['tiff']['byte_order']);
127 foreach ($info['tiff']['ifd'] as $IFDid => $IFDarray) {
136 …$info['tiff']['ifd'][$IFDid]['fields'][$key]['raw']['data'] = $this->fread($fieldarray['raw']['len…
149 $info['tiff']['ifd'][$IFDid]['fields'][$key]['raw']['data'] = $fieldarray['value'];
152 …$info['tiff']['ifd'][$IFDid]['fields'][$key]['raw']['data'] = $this->fread($fieldarray['raw']['len…
159 $xmpkey = (isset($info['tiff']['XMP']) ? count($info['tiff']['XMP']) : 0);
160 $info['tiff']['XMP'][$xmpkey]['raw'] = $this->fread($fieldarray['raw']['length']);
161 if (substr($info['tiff']['XMP'][$xmpkey]['raw'], 0, strlen($XMPmagic)) != $XMPmagic) {
163 unset($info['tiff']['XMP'][$xmpkey]['raw']);
169 $info['video']['resolution_x'] = $fieldarray['value'];
173 $info['video']['resolution_y'] = $fieldarray['value'];
178 $info['video']['bits_per_sample'] = $fieldarray['value'];
180 $info['video']['bits_per_sample'] = 0;
182info['video']['bits_per_sample'] += $this->TIFFendian2Int(substr($info['tiff']['ifd'][$IFDid]['fie…
188 $info['video']['codec'] = $this->TIFFcompressionMethod($fieldarray['value']);
199 if (isset($info['tiff']['comments'][$TIFFcommentName])) {
200 …$info['tiff']['comments'][$TIFFcommentName][] = $info['tiff']['ifd'][$IFDid]['fields'][$key]…
202 …$info['tiff']['comments'][$TIFFcommentName] = array($info['tiff']['ifd'][$IFDid]['fields'][$key]…