The Equalizer class can be used to specify equalization settings for the MPEG audio decoder.

The equalizer consists of 32 band-pass filters. Each band of the equalizer can take on a fractional value between -1.0 and +1.0. At -1.0, the input signal is attenuated by 6dB, at +1.0 the signal is amplified by 6dB.

コード例 #1
0
ファイル: Decoder.cs プロジェクト: RHY3756547/FreeSO
 private void InitBlock()
 {
     outputChannels = OutputChannels.BOTH;
     equalizer = new Equalizer();
 }
コード例 #2
0
ファイル: Decoder.cs プロジェクト: rejc2/utils
 private void  InitBlock()
 {
     equalizer = new Equalizer();
 }
コード例 #3
0
ファイル: Decoder.cs プロジェクト: RHY3756547/FreeSO
 private void InitBlock()
 {
     equalizer = new Equalizer();
 }
コード例 #4
0
ファイル: Decoder.cs プロジェクト: rejc2/utils
 private void  InitBlock()
 {
     outputChannels = OutputChannels.BOTH;
     equalizer      = new Equalizer();
 }