mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-08 18:49:07 +08:00
22 lines
334 B
C
22 lines
334 B
C
![]() |
//
|
||
|
// Created by mart on 7/26/21.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "IIR_1st.h"
|
||
|
|
||
|
class IIR_NOrder_BW_BP {
|
||
|
public:
|
||
|
explicit IIR_NOrder_BW_BP(uint32_t order);
|
||
|
~IIR_NOrder_BW_BP();
|
||
|
|
||
|
void Mute();
|
||
|
void setBPF(float highCut, float lowCut, uint32_t samplerate);
|
||
|
|
||
|
IIR_1st* lowpass;
|
||
|
IIR_1st* highpass;
|
||
|
uint32_t order;
|
||
|
};
|
||
|
|