getid3_flac::parseAPPLICATION() –
You appear to be a bot. Output may be restricted
Description
Usage
$bool = getid3_flac::parseAPPLICATION( $BlockData );
Parameters
- $BlockData
- ( string ) required –
Returns
bool
Source
File name: wordpress/wp-includes/ID3/module.audio.flac.php
Lines:
1 to 9 of 9
private function parseAPPLICATION($BlockData) { $info = &$this->getid3->info; $ApplicationID = getid3_lib::BigEndian2Int(substr($BlockData, 0, 4)); $info['flac']['APPLICATION'][$ApplicationID]['name'] = self::applicationIDLookup($ApplicationID); $info['flac']['APPLICATION'][$ApplicationID]['data'] = substr($BlockData, 4); return true; }