Lines Matching refs:info

27 		$info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
33 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at '.$info['avdataoffset'].', foun…
36 $info['fileformat'] = 'ts';
41 …$info['ts']['packet']['sync'] = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 1)); $offset …
44 …$info['ts']['packet']['flags']['transport_error_indicator'] = (bool) ($pid_flags_raw & 0x8…
45 …$info['ts']['packet']['flags']['payload_unit_start_indicator'] = (bool) ($pid_flags_raw & 0x4…
46 …$info['ts']['packet']['flags']['transport_high_priority'] = (bool) ($pid_flags_raw & 0x2…
47 …$info['ts']['packet']['packet_id'] = ($pid_flags_raw & 0x1…
49 …$info['ts']['packet']['raw']['scrambling_control'] = ($SAC_raw & 0…
50 …$info['ts']['packet']['flags']['adaption_field_exists'] = (bool) ($SAC_raw & 0…
51 …$info['ts']['packet']['flags']['payload_exists'] = (bool) ($SAC_raw & 0…
52 …$info['ts']['packet']['continuity_counter'] = ($SAC_raw & 0…
53 …$info['ts']['packet']['scrambling_control'] = $this->TSscramblingControlLookup(…
55 if ($info['ts']['packet']['flags']['adaption_field_exists']) {
57 …$info['ts']['packet']['adaption']['field_length'] = ($AdaptionField_raw & 0xFF00)…
58 …$info['ts']['packet']['adaption']['flags']['discontinuity'] = (bool) ($AdaptionField_raw & 0x0080)…
59 …$info['ts']['packet']['adaption']['flags']['random_access'] = (bool) ($AdaptionField_raw & 0x0040)…
60 …$info['ts']['packet']['adaption']['flags']['high_priority'] = (bool) ($AdaptionField_raw & 0x0020)…
61 …$info['ts']['packet']['adaption']['flags']['pcr'] = (bool) ($AdaptionField_raw & 0x0010)…
62 …$info['ts']['packet']['adaption']['flags']['opcr'] = (bool) ($AdaptionField_raw & 0x0008)…
63 …$info['ts']['packet']['adaption']['flags']['splice_point'] = (bool) ($AdaptionField_raw & 0x0004)…
64 …$info['ts']['packet']['adaption']['flags']['private_data'] = (bool) ($AdaptionField_raw & 0x0002)…
65 …$info['ts']['packet']['adaption']['flags']['extension'] = (bool) ($AdaptionField_raw & 0x0001)…
66 if ($info['ts']['packet']['adaption']['flags']['pcr']) {
67 …$info['ts']['packet']['adaption']['raw']['pcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $off…
69 if ($info['ts']['packet']['adaption']['flags']['opcr']) {
70 …$info['ts']['packet']['adaption']['raw']['opcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $of…