Lines Matching refs:getid3_lib

35 …$this->error('Expecting "FRM8" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexB…
59 …$this->error('Invalid chunk name "'.$thisChunk['name'].'" ('.getid3_lib::PrintHexBytes($thisChunk[…
61 $thisChunk['size'] = getid3_lib::BigEndian2Int(substr($ChunkHeader, 4, 8));
68 …$this->error('Expecting "DSD " at offset '.($this->ftell() - 4).', found "'.getid3_lib::PrintHexBy…
76 …$this->error('Expecting "SND " at offset '.($this->ftell() - 4).', found "'.getid3_lib::PrintHexBy…
97 $info['dsdiff']['sample_rate'] = getid3_lib::BigEndian2Int($this->fread(4));
105 $thisChunk['num_channels'] = getid3_lib::BigEndian2Int($this->fread(2));
118 $humanReadableByteLength = getid3_lib::BigEndian2Int($this->fread(1));
128 …$info['dsdiff']['absolute_start_time']['hours'] = getid3_lib::BigEndian2Int(substr($ABSS, 0, 2));
129 …$info['dsdiff']['absolute_start_time']['minutes'] = getid3_lib::BigEndian2Int(substr($ABSS, 2, 1));
130 …$info['dsdiff']['absolute_start_time']['seconds'] = getid3_lib::BigEndian2Int(substr($ABSS, 3, 1));
131 …$info['dsdiff']['absolute_start_time']['samples'] = getid3_lib::BigEndian2Int(substr($ABSS, 4, 4));
139 $thisChunk['loundspeaker_config_id'] = getid3_lib::BigEndian2Int($this->fread(2));
142 $thisChunk['num_comments'] = getid3_lib::BigEndian2Int($this->fread(2));
146 $thisComment['creation_year'] = getid3_lib::BigEndian2Int(substr($COMT, 0, 2));
147 $thisComment['creation_month'] = getid3_lib::BigEndian2Int(substr($COMT, 2, 1));
148 $thisComment['creation_day'] = getid3_lib::BigEndian2Int(substr($COMT, 3, 1));
149 $thisComment['creation_hour'] = getid3_lib::BigEndian2Int(substr($COMT, 4, 1));
150 $thisComment['creation_minute'] = getid3_lib::BigEndian2Int(substr($COMT, 5, 1));
151 $thisComment['comment_type_id'] = getid3_lib::BigEndian2Int(substr($COMT, 6, 2));
152 $thisComment['comment_ref_id'] = getid3_lib::BigEndian2Int(substr($COMT, 8, 2));
153 $thisComment['string_length'] = getid3_lib::BigEndian2Int(substr($COMT, 10, 4));
171 $thisChunk['marker_hours'] = getid3_lib::BigEndian2Int(substr($MARK, 0, 2));
172 $thisChunk['marker_minutes'] = getid3_lib::BigEndian2Int(substr($MARK, 2, 1));
173 $thisChunk['marker_seconds'] = getid3_lib::BigEndian2Int(substr($MARK, 3, 1));
174 $thisChunk['marker_samples'] = getid3_lib::BigEndian2Int(substr($MARK, 4, 4));
175 $thisChunk['marker_offset'] = getid3_lib::BigEndian2Int(substr($MARK, 8, 4));
176 $thisChunk['marker_type_id'] = getid3_lib::BigEndian2Int(substr($MARK, 12, 2));
177 $thisChunk['marker_channel'] = getid3_lib::BigEndian2Int(substr($MARK, 14, 2));
178 $thisChunk['marker_flagraw'] = getid3_lib::BigEndian2Int(substr($MARK, 16, 2));
179 $thisChunk['string_length'] = getid3_lib::BigEndian2Int(substr($MARK, 18, 4));
190 $thisChunk['string_length'] = getid3_lib::BigEndian2Int($this->fread(4));
210 getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v2.php', __FILE__, true);