Lines Matching refs:info

27 		$info = &$this->getid3->info;
29 $info['fileformat'] = 'iso';
37 $info['iso']['primary_volume_descriptor']['offset'] = 2048 * $i;
42 $info['iso']['supplementary_volume_descriptor']['offset'] = 2048 * $i;
55 $info['iso']['files'] = array();
56 foreach ($info['iso']['path_table']['directories'] as $directorynum => $directorydata) {
57 $info['iso']['directories'][$directorynum] = $this->ParseDirectoryRecord($directorydata);
73 $info = &$this->getid3->info;
74 $info['iso']['primary_volume_descriptor']['raw'] = array();
75 $thisfile_iso_primaryVD = &$info['iso']['primary_volume_descriptor'];
82 unset($info['fileformat']);
83 unset($info['iso']);
134 if (($thisfile_iso_primaryVD_raw['volume_space_size'] * 2048) > $info['filesize']) {
135 …aw['volume_space_size'] * 2048).' bytes) is larger than the file size ('.$info['filesize'].' bytes…
151 $info = &$this->getid3->info;
152 $info['iso']['supplementary_volume_descriptor']['raw'] = array();
153 $thisfile_iso_supplementaryVD = &$info['iso']['supplementary_volume_descriptor'];
160 unset($info['fileformat']);
161 unset($info['iso']);
217 …lume_space_size'] * $thisfile_iso_supplementaryVD_raw['logical_block_size']) > $info['filesize']) {
218 …ryVD_raw['logical_block_size']).' bytes) is larger than the file size ('.$info['filesize'].' bytes…
228 $info = &$this->getid3->info;
229 …if (!isset($info['iso']['supplementary_volume_descriptor']['raw']['path_table_l_location']) && !is…
232 if (isset($info['iso']['supplementary_volume_descriptor']['raw']['path_table_l_location'])) {
233 …$PathTableLocation = $info['iso']['supplementary_volume_descriptor']['raw']['path_table_l_location…
234 $PathTableSize = $info['iso']['supplementary_volume_descriptor']['raw']['path_table_size'];
237 $PathTableLocation = $info['iso']['primary_volume_descriptor']['raw']['path_table_l_location'];
238 $PathTableSize = $info['iso']['primary_volume_descriptor']['raw']['path_table_size'];
242 if (($PathTableLocation * 2048) > $info['filesize']) {
243 …ifies an offset ('.($PathTableLocation * 2048).') beyond the end-of-file ('.$info['filesize'].')');
247 $info['iso']['path_table']['offset'] = $PathTableLocation * 2048;
248 $this->fseek($info['iso']['path_table']['offset']);
249 $info['iso']['path_table']['raw'] = $this->fread($PathTableSize);
255 $info['iso']['path_table']['directories'][$pathcounter] = array();
256 …$thisfile_iso_pathtable_directories_current = &$info['iso']['path_table']['directories'][$pathcoun…
258 …tories_current['length'] = getid3_lib::LittleEndian2Int(substr($info['iso']['path_table'…
260 …tories_current['extended_length'] = getid3_lib::LittleEndian2Int(substr($info['iso']['path_table'…
262 …tories_current['location_logical'] = getid3_lib::LittleEndian2Int(substr($info['iso']['path_table'…
264 …tories_current['parent_directory'] = getid3_lib::LittleEndian2Int(substr($info['iso']['path_table'…
266 …$thisfile_iso_pathtable_directories_current['name'] = substr($info['i…
269 …_current['name_ascii'] = getid3_lib::iconv_fallback($TextEncoding, $info['encoding'], $thisf…
275 …$thisfile_iso_pathtable_directories_current['full_path'] = $info['iso']['path_table']['directories…
291 $info = &$this->getid3->info;
292 if (isset($info['iso']['supplementary_volume_descriptor'])) {
320 …dentifier_ascii'] = getid3_lib::iconv_fallback($TextEncoding, $info['encoding'], $ThisD…
336 …$info['iso']['files'] = getid3_lib::array_merge_clobber($info['iso']['files'], getid3_lib::CreateD…