Navigation
API > API/Runtime > API/Runtime/SignalProcessing > API/Runtime/SignalProcessing/DSP
References
| Module | SignalProcessing |
| Header | /Engine/Source/Runtime/SignalProcessing/Public/DSP/VoiceProcessing.h |
| Include | #include "DSP/VoiceProcessing.h" |
Syntax
class FSlowAdaptiveGainControl
Remarks
This object accepts an input buffer and current amplitude estimate of that input buffer, Then applies a computed gain target. Works like a standard feed forward limiter, with a threshold of 0.
Constructors
| Type | Name | Description | |
|---|---|---|---|
FSlowAdaptiveGainControl
(
float InGainTarget, |
InGainTarget is our target running linear gain. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| float | ProcessAudio
(
float* InAudio, |
Takes an amplitude estimate and an input buffer, and attenuates InAudio based on it. | |
| void | SetAdaptiveRate
(
int32 InAdaptiveRate |
Sets the responsiveness of the adaptive gain control, in number of buffer callbacks. |