getid3_flv::audioBitDepthLookup() –
You appear to be a bot. Output may be restricted
Description
Usage
$int|false = getid3_flv::audioBitDepthLookup( $id );
Parameters
- $id
- ( int ) required –
Returns
int|false
Source
File name: wordpress/wp-includes/ID3/module.audio-video.flv.php
Lines:
1 to 7 of 7
public static function audioBitDepthLookup($id) { static $lookup = array( 0 => 8, 1 => 16, ); return (isset($lookup[$id]) ? $lookup[$id] : false); }