getid3_ac3::channelsEnabledLookup() –

You appear to be a bot. Output may be restricted

Description

Usage

$array = getid3_ac3::channelsEnabledLookup( $acmod, $lfeon );

Parameters

$acmod
( int ) required
$lfeon
( bool ) required

Returns

array

Source

File name: wordpress/wp-includes/ID3/module.audio.ac3.php
Lines:

1 to 24 of 24
  public static function channelsEnabledLookup($acmod, $lfeon) {
    $lookup = array(
      'ch1'=>($acmod == 0),
      'ch2'=>($acmod == 0),
      'left'=>($acmod > 1),
      'right'=>($acmod > 1),
      'center'=>(bool) ($acmod & 0x01),
      'surround_mono'=>false,
      'surround_left'=>false,
      'surround_right'=>false,
      'lfe'=>$lfeon);
    switch ($acmod) {
      case 4:
      case 5:
        $lookup['surround_mono']  = true;
        break;
      case 6:
      case 7:
        $lookup['surround_left']  = true;
        $lookup['surround_right'] = true;
        break;
    }
    return $lookup;
  }
 

 View on GitHub View on Trac