Метод | Описание | |
---|---|---|
Apply ( Signal signal ) : Signal |
Applies the filter to a signal.
|
|
Apply ( ) : Signal[] |
Applies the filter to a windowed signal.
|
|
ApplyInPlace ( ) : void |
Apply filter to a windowed audio signal. The method alters the original signal to store the result of this signal processing filter. |
|
ApplyInPlace ( Signal signal ) : void |
Apply filter to an audio signal. The method alters the original signal to store the result of this signal processing filter. |
Метод | Описание | |
---|---|---|
NewSignal ( int channels, int samples, int rate, SampleFormat dstSampleFormat ) : Signal |
Creates a new signal from the given signal parameters. This method can be overridden on child classes to modify how output signals are created.
|
|
ProcessFilter ( Signal sourceData, Signal destinationData ) : void |
Processes the filter.
|
Метод | Описание | |
---|---|---|
CheckSourceFormat ( SampleFormat sampleFormat ) : void |
public ApplyInPlace ( Signal signal ) : void | ||
signal | Signal | Source signal to apply filter to. |
Результат | void |
protected NewSignal ( int channels, int samples, int rate, SampleFormat dstSampleFormat ) : Signal | ||
channels | int | |
samples | int | |
rate | int | |
dstSampleFormat | SampleFormat | |
Результат | Signal |
protected abstract ProcessFilter ( Signal sourceData, Signal destinationData ) : void | ||
sourceData | Signal | |
destinationData | Signal | |
Результат | void |