Navigation
API > API/Plugins > API/Plugins/HarmonixDsp > API/Plugins/HarmonixDsp/FFirFilter
Description
Initializes the filter with the specified taps, which must have InTapCount elements.
If InCopyTaps is true, the taps will be copied into a new buffer owned by the filter; otherwise, the filter will simply store a pointer to the input array.
Any existing tap or history buffers will be freed.
Derived Overrides
| Name | Init |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Harmonix/Source/HarmonixDsp/Public/HarmonixDsp/Effects/FirFilter.h |
| Include Path | #include "HarmonixDsp/Effects/FirFilter.h" |
| Source | /Engine/Plugins/Runtime/Harmonix/Source/HarmonixDsp/Private/HarmonixDsp/Effects/FirFilter.cpp |
virtual void Init
(
const float * InTaps,
int32 InTapCount,
bool InCopyTaps
)
Parameters
| Name | Remarks |
|---|---|
| InTaps | the array of filter taps |
| InTapCount | the number of filter taps |
| InCopyTaps | whether to copy the taps into a new buffer |