Lines Matching refs:info

29 		$info = &$this->getid3->info;
31 $info['fileformat'] = 'swf';
32 $info['video']['dataformat'] = 'swf';
36 $this->fseek($info['avdataoffset']);
38 …$SWFfileData = $this->fread($info['avdataend'] - $info['avdataoffset']); // 8 + 2 + 2 + max(9) byt…
40 $info['swf']['header']['signature'] = substr($SWFfileData, 0, 3);
41 switch ($info['swf']['header']['signature']) {
43 $info['swf']['header']['compressed'] = false;
47 $info['swf']['header']['compressed'] = true;
51 …rror('Expecting "FWS" or "CWS" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
52 unset($info['swf']);
53 unset($info['fileformat']);
56 $info['swf']['header']['version'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 3, 1));
57 $info['swf']['header']['length'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 4, 4));
59 if ($info['swf']['header']['compressed']) {
65 …ressed SWF data ('.strlen($SWFfileData).' bytes compressed, should be '.($info['swf']['header']['l…
77 $info['swf']['header']['frame_width'] = getid3_lib::Bin2Dec($X2);
78 $info['swf']['header']['frame_height'] = getid3_lib::Bin2Dec($Y2);
87 …$info['swf']['header']['frame_rate'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 9 + $Fr…
88 …$info['swf']['header']['frame_count'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 10 + $Fr…
90 $info['video']['frame_rate'] = $info['swf']['header']['frame_rate'];
91 $info['video']['resolution_x'] = intval(round($info['swf']['header']['frame_width'] / 20));
92 $info['video']['resolution_y'] = intval(round($info['swf']['header']['frame_height'] / 20));
93 $info['video']['pixel_aspect_ratio'] = (float) 1;
95 if (($info['swf']['header']['frame_count'] > 0) && ($info['swf']['header']['frame_rate'] > 0)) {
96 …$info['playtime_seconds'] = $info['swf']['header']['frame_count'] / $info['swf']['header']['frame_…
129 …$info['swf']['bgcolor'] = strtoupper(str_pad(dechex(getid3_lib::BigEndian2Int($TagData['data'])), …
134 $info['swf']['tags'][] = $TagData;