mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-25 09:12:56 +08:00
initial commit
This commit is contained in:
20
src/utils/IIR_NOrder_BW_LH.h
Normal file
20
src/utils/IIR_NOrder_BW_LH.h
Normal file
@ -0,0 +1,20 @@
|
||||
//
|
||||
// Created by mart on 7/26/21.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "IIR_1st.h"
|
||||
|
||||
class IIR_NOrder_BW_LH {
|
||||
public:
|
||||
explicit IIR_NOrder_BW_LH(uint32_t order);
|
||||
~IIR_NOrder_BW_LH();
|
||||
|
||||
void Mute();
|
||||
void setLPF(float frequency, uint32_t samplerate);
|
||||
void setHPF(float frequency, uint32_t samplerate);
|
||||
|
||||
IIR_1st* filters;
|
||||
uint32_t order;
|
||||
};
|
Reference in New Issue
Block a user