Lines Matching refs:info

26 		$info = &$this->getid3->info;
28 $info['fileformat'] = 'ivf';
29 $info['video']['dataformat'] = 'ivf';
31 $this->fseek($info['avdataoffset']);
37 …$info['ivf']['header']['signature'] = substr($IVFheader, …
38 …$info['ivf']['header']['version'] = getid3_lib::LittleEndian2Int(substr($IVFheader, …
39 …$info['ivf']['header']['headersize'] = getid3_lib::LittleEndian2Int(substr($IVFheader, …
40 …$info['ivf']['header']['fourcc'] = substr($IVFheader, …
41 …$info['ivf']['header']['resolution_x'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 1…
42 …$info['ivf']['header']['resolution_y'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 1…
43 …$info['ivf']['header']['timebase_numerator'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 1…
44 …$info['ivf']['header']['timebase_denominator'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 2…
45 …$info['ivf']['header']['frame_count'] = getid3_lib::LittleEndian2Int(substr($IVFheader, 2…
48 …$info['ivf']['header']['frame_rate'] = (float) $info['ivf']['header']['timebase_numerator'] / $inf…
50 if ($info['ivf']['header']['version'] > 0) {
51 …$this->warning('Expecting IVF header version 0, found version '.$info['ivf']['header']['version'].…
54 $info['video']['resolution_x'] = $info['ivf']['header']['resolution_x'];
55 $info['video']['resolution_y'] = $info['ivf']['header']['resolution_y'];
56 $info['video']['codec'] = $info['ivf']['header']['fourcc'];
58 $info['ivf']['frame_count'] = 0;
64 $info['ivf']['frame_count']++;
67 if ($info['ivf']['frame_count']) {
68 $info['playtime_seconds'] = $timestamp / 100000;
69 $info['video']['frame_rate'] = (float) $info['ivf']['frame_count'] / $info['playtime_seconds'];
73 …$this->error('Expecting "DKIF" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…