getid3_flac::metaBlockTypeLookup() –
You appear to be a bot. Output may be restricted
Description
Usage
$string = getid3_flac::metaBlockTypeLookup( $blocktype );
Parameters
- $blocktype
- ( int ) required –
Returns
string
Source
File name: wordpress/wp-includes/ID3/module.audio.flac.php
Lines:
1 to 12 of 12
public static function metaBlockTypeLookup($blocktype) { static $lookup = array( 0 => 'STREAMINFO', 1 => 'PADDING', 2 => 'APPLICATION', 3 => 'SEEKTABLE', 4 => 'VORBIS_COMMENT', 5 => 'CUESHEET', 6 => 'PICTURE', ); return (isset($lookup[$blocktype]) ? $lookup[$blocktype] : 'reserved'); }