Home
last modified time | relevance | path

Searched refs:BigEndian2Int (Results 1 – 25 of 35) sorted by relevance

12

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.graphic.png.php60 $chunk['data_length'] = getid3_lib::BigEndian2Int(substr($PNGfiledata, $offset, 4));
77 $chunk['type_raw'] = getid3_lib::BigEndian2Int($chunk['type_text']);
80 $chunk['crc'] = getid3_lib::BigEndian2Int(substr($PNGfiledata, $offset, 4));
123 $red = getid3_lib::BigEndian2Int(substr($chunk['data'], $paletteoffset++, 1));
124 $green = getid3_lib::BigEndian2Int(substr($chunk['data'], $paletteoffset++, 1));
125 $blue = getid3_lib::BigEndian2Int(substr($chunk['data'], $paletteoffset++, 1));
164 $thisfile_png_chunk_type_text['gamma'] = getid3_lib::BigEndian2Int($chunk['data']) / 100000;
272 … $thisfile_png_chunk_type_text['background_gray'] = getid3_lib::BigEndian2Int($chunk['data']);
283 … $thisfile_png_chunk_type_text['background_index'] = getid3_lib::BigEndian2Int($chunk['data']);
370 … $thisfile_png_chunk_type_text['year'] = getid3_lib::BigEndian2Int(substr($chunk['data'], 0, 2));
[all …]
H A Dmodule.audio-video.real.php39 $ChunkSize = getid3_lib::BigEndian2Int(substr($ChunkData, 4, 4));
392 $ParsedArray['version1'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 4, 2));
404 $ParsedArray['header_size'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 6, 2));
409 $ParsedArray['bytes_per_minute'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 16, 2));
410 $ParsedArray['audio_bytes'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 18, 4));
434 $ParsedArray['file_size'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 12, 4));
435 $ParsedArray['version2'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 16, 2));
436 $ParsedArray['header_size'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 18, 4));
437 $ParsedArray['codec_flavor_id'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 22, 2));
438 $ParsedArray['coded_frame_size'] = getid3_lib::BigEndian2Int(substr($OldRAheaderData, 24, 4));
[all …]
H A Dmodule.audio-video.quicktime.php53 $atomsize = getid3_lib::BigEndian2Int(substr($AtomHeader, 0, 4));
58 $atomsize = getid3_lib::BigEndian2Int($this->fread(8));
244 $atomname = getid3_lib::BigEndian2Int($atomname);
501 $GenreID = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4));
605 $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_data);
1945 $chpl_count = getid3_lib::BigEndian2Int(substr($atom_data, 8, 1));
2677 $data = getid3_lib::BigEndian2Int($data);
2685 $data = getid3_lib::BigEndian2Int($data);
2756 $timezone = getid3_lib::BigEndian2Int(substr($data, 0, 2));
2762 $dst = (bool) getid3_lib::BigEndian2Int(substr($data, 2, 1));
[all …]
H A Dmodule.audio.dsdiff.php61 $thisChunk['size'] = getid3_lib::BigEndian2Int(substr($ChunkHeader, 4, 8));
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));
142 $thisChunk['num_comments'] = getid3_lib::BigEndian2Int($this->fread(2));
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));
[all …]
H A Dmodule.audio.avr.php85 $info['avr']['raw']['mono'] = getid3_lib::BigEndian2Int(substr($AVRheader, 12, 2));
86 $info['avr']['bits_per_sample'] = getid3_lib::BigEndian2Int(substr($AVRheader, 14, 2));
87 $info['avr']['raw']['signed'] = getid3_lib::BigEndian2Int(substr($AVRheader, 16, 2));
88 $info['avr']['raw']['loop'] = getid3_lib::BigEndian2Int(substr($AVRheader, 18, 2));
89 $info['avr']['raw']['midi'] = getid3_lib::BigEndian2Int(substr($AVRheader, 20, 2));
90 $info['avr']['raw']['replay_freq'] = getid3_lib::BigEndian2Int(substr($AVRheader, 22, 1));
91 $info['avr']['sample_rate'] = getid3_lib::BigEndian2Int(substr($AVRheader, 23, 3));
92 $info['avr']['sample_length'] = getid3_lib::BigEndian2Int(substr($AVRheader, 26, 4));
93 $info['avr']['loop_start'] = getid3_lib::BigEndian2Int(substr($AVRheader, 30, 4));
94 $info['avr']['loop_end'] = getid3_lib::BigEndian2Int(substr($AVRheader, 34, 4));
[all …]
H A Dmodule.audio.flac.php60 $BlockLength = getid3_lib::BigEndian2Int(substr($BlockHeader, 1, 3));
275 $ApplicationID = getid3_lib::BigEndian2Int(substr($BlockData, 0, 4));
361 $TrackSampleOffset = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8));
363 $TrackNumber = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1));
405 $picture['typeid'] = getid3_lib::BigEndian2Int($this->fread(4));
408 $descr_length = getid3_lib::BigEndian2Int($this->fread(4));
412 $picture['image_width'] = getid3_lib::BigEndian2Int($this->fread(4));
413 $picture['image_height'] = getid3_lib::BigEndian2Int($this->fread(4));
414 $picture['color_depth'] = getid3_lib::BigEndian2Int($this->fread(4));
415 $picture['colors_indexed'] = getid3_lib::BigEndian2Int($this->fread(4));
[all …]
H A Dmodule.archive.szip.php36 $info['szip']['major_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 4, 1));
37 $info['szip']['minor_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 5, 1));
52 $BHheaderbytes = getid3_lib::BigEndian2Int($this->fread(3));
74 … $BHdataArray['filelength'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 3));
77 …$BHdataArray['access_flags'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 2)…
80 …$BHdataArray['creation_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 4…
83 …$BHdataArray['modification_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffse…
86 …$BHdataArray['access_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 4));
H A Dmodule.audio-video.flv.php106 $info['flv']['header']['version'] = getid3_lib::BigEndian2Int(substr($FLVheader, 3, 1));
118 $FrameSizeDataLength = getid3_lib::BigEndian2Int($this->fread(4));
134 $PreviousTagLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 0, 4));
135 $TagType = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 4, 1));
136 $DataLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 5, 3));
137 $Timestamp = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 8, 3));
138 $LastHeaderByte = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 15, 1));
168 $AVCPacketType = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 0, 1));
196 $PictureSizeType = (getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 3, 2))) >> 7;
257 $PictureSizeEnc['x'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 2));
[all …]
H A Dmodule.audio-video.ts.php41 …$info['ts']['packet']['sync'] = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 1)); $offset …
42 …$pid_flags_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 2)); $offset …
43 …$SAC_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 1)); $offset …
56 …$AdaptionField_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 2)); $offset += 2;
67 …$info['ts']['packet']['adaption']['raw']['pcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $off…
70 …$info['ts']['packet']['adaption']['raw']['opcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $of…
H A Dmodule.audio.vqf.php57 $thisfile_vqf_raw['size'] = getid3_lib::BigEndian2Int(substr($VQFheaderData, $offset, 4));
71 $ChunkSize = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, 4));
87 …$thisfile_vqf_COMM['channel_mode'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
89 …$thisfile_vqf_COMM['bitrate'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
91 …$thisfile_vqf_COMM['sample_rate'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
93 …$thisfile_vqf_COMM['security_level'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
117 $thisfile_vqf['DSIZ'] = getid3_lib::BigEndian2Int(substr($ChunkData, 8, 4));
H A Dmodule.tag.id3v2.php234 $restrictions_raw = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1));
287 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 3, 3), 0);
301 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer
315 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer
320 $frame_flags = getid3_lib::BigEndian2Int(substr($frame_header, 8, 2));
450 $thisfile_id3v2['footerlength'] = getid3_lib::BigEndian2Int(substr($footer, 6, 4), 1);
620 … $parsedFrame['decompressed_size'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 0, 4));
1282 $frame_frequency = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 0, 2)) / 2;
1337 … $parsedFrame['left'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2));
1554 $parsedFrame['data'] = getid3_lib::BigEndian2Int($parsedFrame['data']);
[all …]
H A Dmodule.audio.midi.php55 $thisfile_midi_raw['headersize'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 4));
57 $thisfile_midi_raw['fileformat'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
59 $thisfile_midi_raw['tracks'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
61 $thisfile_midi_raw['ticksperqnote'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
77 $tracksize = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 4));
188 … $track_sequence_number = getid3_lib::BigEndian2Int(substr($METAeventData, 0, $METAeventLength));
238 …$CurrentMicroSecondsPerBeat = getid3_lib::BigEndian2Int(substr($METAeventData, 0, $METAeventLength…
250 $timesig_numerator = getid3_lib::BigEndian2Int($METAeventData[0]);
251 …$timesig_denominator = pow(2, getid3_lib::BigEndian2Int($METAeventData[1])); // $02 -> x/4, $03 ->…
261 $keysig_sharpsflats = getid3_lib::BigEndian2Int($METAeventData[0]);
[all …]
H A Dmodule.audio.au.php47 $thisfile_au['header_length'] = getid3_lib::BigEndian2Int(substr($AUheader, 4, 4));
51 $thisfile_au['data_size'] = getid3_lib::BigEndian2Int(substr($AUheader, 8, 4));
52 $thisfile_au['data_format_id'] = getid3_lib::BigEndian2Int(substr($AUheader, 12, 4));
53 $thisfile_au['sample_rate'] = getid3_lib::BigEndian2Int(substr($AUheader, 16, 4));
54 $thisfile_au['channels'] = getid3_lib::BigEndian2Int(substr($AUheader, 20, 4));
H A Dmodule.audio.mpc.php110 …$thisPacket['crc'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_…
112 …$thisPacket['stream_version'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_…
123 …$otherUsefulData = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_…
148 …$thisPacket['replaygain_version'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $pa…
150 …$thisPacket['replaygain_title_gain'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $pa…
152 …$thisPacket['replaygain_title_peak'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $pa…
154 …$thisPacket['replaygain_album_gain'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $pa…
170 …$profile_pns = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_offset, 1)…
176 …$thisPacket['version_major'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_offset, 1)…
178 …$thisPacket['version_minor'] = getid3_lib::BigEndian2Int(substr($MPCheaderData, $packet_offset, 1)…
[all …]
H A Dmodule.audio-video.matroska.php565 $element_data['data'] = getid3_lib::BigEndian2Int($element_data['data']);
653 $track_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']);
841 $info_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']);
849 … $info_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']);
1187 $cluster_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']);
1197 $cluster_silent_tracks[] = getid3_lib::BigEndian2Int($sub_subelement['data']);
1458 $simpletag_entry[$element['id_name']] = (bool)getid3_lib::BigEndian2Int($element['data']);
1483 …$block_data['timecode'] = getid3_lib::BigEndian2Int($this->readEBMLelementData(2), false, true);
1484 $block_data['flags_raw'] = getid3_lib::BigEndian2Int($this->readEBMLelementData(1));
1514 $size = getid3_lib::BigEndian2Int($this->readEBMLelementData(1));
[all …]
H A Dmodule.audio.lpac.php44 $info['lpac']['file_version'] = getid3_lib::BigEndian2Int(substr($LPACheader, 4, 1));
45 $flags['audio_type'] = getid3_lib::BigEndian2Int(substr($LPACheader, 5, 1));
46 $info['lpac']['total_samples']= getid3_lib::BigEndian2Int(substr($LPACheader, 6, 4));
47 $flags['parameters'] = getid3_lib::BigEndian2Int(substr($LPACheader, 10, 4));
H A Dmodule.audio.mp3.php513 $thisfile_mpeg_audio['crc'] = getid3_lib::BigEndian2Int(substr($headerstring, 4, 2));
661 …$thisfile_mpeg_audio['xing_flags_raw'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOff…
669 …$thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset …
673 …$thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset …
711 …$thisfile_mpeg_audio['VBR_scale'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset +…
766 …$LAMEtagRevisionVBRmethod = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant …
840 …$EncodingFlagsATHtype = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0x…
858 …$EncoderDelays = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB1, 3));
863 $MiscByte = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB4, 1));
879 …$PresetSurroundBytes = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB…
[all …]
H A Dmodule.audio.ogg.php137 …$info['ogg']['pageheader']['theora']['version_major'] = getid3_lib::BigEndian2Int(subst…
139 …$info['ogg']['pageheader']['theora']['version_minor'] = getid3_lib::BigEndian2Int(subst…
141 …$info['ogg']['pageheader']['theora']['version_revision'] = getid3_lib::BigEndian2Int(subst…
143 …$info['ogg']['pageheader']['theora']['frame_width_macroblocks'] = getid3_lib::BigEndian2Int(subst…
145 …$info['ogg']['pageheader']['theora']['frame_height_macroblocks'] = getid3_lib::BigEndian2Int(subst…
147 …$info['ogg']['pageheader']['theora']['resolution_x'] = getid3_lib::BigEndian2Int(subst…
149 …$info['ogg']['pageheader']['theora']['resolution_y'] = getid3_lib::BigEndian2Int(subst…
151 …$info['ogg']['pageheader']['theora']['picture_offset_x'] = getid3_lib::BigEndian2Int(subst…
153 …$info['ogg']['pageheader']['theora']['picture_offset_y'] = getid3_lib::BigEndian2Int(subst…
155 …$info['ogg']['pageheader']['theora']['frame_rate_numerator'] = getid3_lib::BigEndian2Int(subst…
[all …]
H A Dmodule.audio.tak.php49 $objtype = getid3_lib::BigEndian2Int(substr($TAKMetaData, 0, 1)); //Metadata Block Object Type
70 $objtype = getid3_lib::BigEndian2Int(substr($TAKMetaData, 0, 1));
84 …$thisfile_takaudio['profile'] = self::TAKProfileLookup(getid3_lib::BigEndian2Int(substr($TAKMetaDa…
125 $objtype = getid3_lib::BigEndian2Int(substr($TAKMetaData, 0, 1));
H A Dmodule.audio-video.riff.php386 …$SNDM_thisTagSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_s…
390 …$SNDM_thisTagDataSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_s…
392 …$SNDM_thisTagDataFlags = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_s…
991 …$thisfile_riff_audio['channels'] = getid3_lib::BigEndian2Int(substr($thisfile_riff…
992 …$thisfile_riff_audio['total_samples'] = getid3_lib::BigEndian2Int(substr($thisfile_riff…
993 …$thisfile_riff_audio['bits_per_sample'] = getid3_lib::BigEndian2Int(substr($thisfile_riff…
998 …$CodecNameSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIF…
1106 …$thisfile_riff_RIFFsubtype_VHDR_0['oneShotHiSamples'] = getid3_lib::BigEndian2Int(substr($thisf…
1107 …$thisfile_riff_RIFFsubtype_VHDR_0['repeatHiSamples'] = getid3_lib::BigEndian2Int(substr($thisf…
1136 …$ChannelsIndex = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['CHAN'][0]['data'],…
[all …]
/plugin/jukebox/id3/
H A Dmodule.audio-video.flv.php62 $FrameSizeDataLength = getid3_lib::BigEndian2Int(fread($fd, 4));
78 $PreviousTagLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 0, 4));
79 $TagType = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 4, 1));
80 $DataLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 5, 3));
81 $Timestamp = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 8, 3));
82 $LastHeaderByte = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 15, 1));
108 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 2));
111 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 2));
117 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 4));
121 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 7, 4));
[all …]
H A Dmodule.tag.id3v2.php211 $restrictions_raw = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1));
250 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 3, 3), 0);
264 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer
278 $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer
283 $frame_flags = getid3_lib::BigEndian2Int(substr($frame_header, 8, 2));
413 $thisfile_id3v2['footerlength'] = getid3_lib::BigEndian2Int(substr($footer, 6, 4), 1);
551 … $parsedFrame['decompressed_size'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 0, 4));
1122 $frame_frequency = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 0, 2)) / 2;
1177 … $parsedFrame['left'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2));
1336 $parsedFrame['data'] = getid3_lib::BigEndian2Int($parsedFrame['data']);
[all …]
H A Dmodule.audio.mp3.php485 $thisfile_mpeg_audio['crc'] = getid3_lib::BigEndian2Int(substr($headerstring, 4, 2));
634 …$thisfile_mpeg_audio['xing_flags_raw'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOff…
642 …$thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset …
646 …$thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset …
673 …$thisfile_mpeg_audio['VBR_scale'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset +…
719 …$LAMEtagRevisionVBRmethod = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant …
793 …$EncodingFlagsATHtype = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0x…
811 …$EncoderDelays = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB1, 3));
816 $MiscByte = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB4, 1));
832 …$PresetSurroundBytes = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB…
[all …]
H A Dgetid3.lib.php237 function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { function in getid3_lib
270 return getid3_lib::BigEndian2Int(strrev($byteword), false, $signed);
455 …return getid3_lib::BigEndian2Int(substr($rawdata, 0, 1)) + (float) (getid3_lib::BigEndian2Int(subs…
460 …return getid3_lib::BigEndian2Int(substr($rawdata, 0, 2)) + (float) (getid3_lib::BigEndian2Int(subs…
886 $charval = getid3_lib::BigEndian2Int(substr($string, $i, 2));
914 $charval = getid3_lib::BigEndian2Int(substr($string, $i, 2));
1081 $charval = getid3_lib::BigEndian2Int(substr($string, $i, 2));
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php395 function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { function
429 return BigEndian2Int(strrev($byteword), false, $signed);
977 …return BigEndian2Int(substr($rawdata, 0, 1)) + (float) (BigEndian2Int(substr($rawdata, 1, 1)) / po…
984 …return BigEndian2Int(substr($rawdata, 0, 2)) + (float) (BigEndian2Int(substr($rawdata, 2, 2)) / po…
1418 $MP3fileInfo['crc'] = BigEndian2Int(substr($headerstring, 4, 2));
1734 $ThisFileInfo['mpeg']['audio']['crc'] = BigEndian2Int(substr($headerstring, 4, 2));
1831 $Fraunhofer_OffsetN = BigEndian2Int(substr($headerstring, $FraunhoferVBROffset, 2));
2009 $EncoderDelays = BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB1, 3));
2014 $MiscByte = BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB4, 1));
2030 $PresetSurroundBytes = BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB6, 2));
[all …]

12