FInterpolatedHPF::StartFrequencyInterpolation

[StartFrequencyInterpolation()](API\Runtime\SignalProcessing\DSP\FInterpolatedHPF\StartFrequencyInterpolation): Intended use: call once at the beginning of callback, pass the callback length then call [ProcessAudioFrame()](API\Runtime\SignalProcessing\DSP\FInterpolatedHPF\ProcessAudioFrame) exactly "InterpLength" number of times At the end of the callback, call [StopFrequencyInterpolation()](API\Runtime\SignalProcessing\DSP\FInterpolatedHPF\StopFrequencyInterpolation)

Windows
MacOS
Linux

References

Module

SignalProcessing

Header

/Engine/Source/Runtime/SignalProcessing/Public/DSP/InterpolatedOnePole.h

Include

#include "DSP/InterpolatedOnePole.h"

Source

/Engine/Source/Runtime/SignalProcessing/Private/InterpolatedOnePole.cpp

Syntax

void StartFrequencyInterpolation
(
    const float InTargetFrequency,
    const int32 InterpLength
)

Remarks

StartFrequencyInterpolation(): Intended use: call once at the beginning of callback, pass the callback length then call ProcessAudioFrame() exactly "InterpLength" number of times At the end of the callback, call StopFrequencyInterpolation()

Failing to call StopFrequencyInterpolation() after more than InterpLength calls to ProcessAudioFrame will cause the filter to become unstable and blow up to +/- inf!

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss