getid3_flv::audioBitDepthLookup()
{} It's a method of the class: getid3_flv{}
No Hooks.
Return
Int|false
.
Usage
$result = getid3_flv::audioBitDepthLookup( $id );
- $id(int) (required)
- -
Code of getid3_flv::audioBitDepthLookup() getid3 flv::audioBitDepthLookup WP 6.0
public static function audioBitDepthLookup($id) { static $lookup = array( 0 => 8, 1 => 16, ); return (isset($lookup[$id]) ? $lookup[$id] : false); }