ViPERFX_RE/src/cpp/utils/NoiseSharpening.h
Iscle 926aec54bb Reformatted code
Indentated with 4 spaces
2022-08-23 00:26:44 +02:00

30 lines
365 B
C++

//
// Created by mart on 7/28/21.
//
#pragma once
#include "IIR_1st.h"
class NoiseSharpening {
public:
NoiseSharpening();
void Process(float *buffer, uint32_t size);
void Reset();
void SetGain(float gain);
void SetSamplingRate(uint32_t samplerate);
IIR_1st filters[2];
float in[2];
int32_t samplerate;
float gain;
};