C# 클래스 ManagedBass.Fx.PeakEQ

BassFx Peaking Equalizer Effect.
상속: IDisposable
파일 보기 프로젝트 열기: ManagedBass/ManagedBass

공개 메소드들

메소드 설명
AddBand ( double CenterFrequency = 1000 ) : int

Adds a Band.

Dispose ( ) : void

Frees all resources used by this instance.

PeakEQ ( int Channel, double Q, double Bandwith = 2.5 ) : System

Creates a new instance of PeakEQ.

UpdateBand ( int Band, double Gain ) : void

Updates a Band.

메소드 상세

AddBand() 공개 메소드

Adds a Band.
public AddBand ( double CenterFrequency = 1000 ) : int
CenterFrequency double The Band's center frequency in Hz. Default = 1000. Max = 1/2 of SampleRate.
리턴 int

Dispose() 공개 메소드

Frees all resources used by this instance.
public Dispose ( ) : void
리턴 void

PeakEQ() 공개 메소드

Creates a new instance of PeakEQ.
public PeakEQ ( int Channel, double Q, double Bandwith = 2.5 ) : System
Channel int
Q double
Bandwith double
리턴 System

UpdateBand() 공개 메소드

Updates a Band.
public UpdateBand ( int Band, double Gain ) : void
Band int The Index of the Band to Update (as returned by ).
Gain double The new Gain value for the Band (-15 ... 0 ... 15).
리턴 void