[AudioFilterSW] Fix audio cutting out due to numerical errors
This commit is contained in:
@ -36,11 +36,11 @@
|
|||||||
class AudioFilterSW {
|
class AudioFilterSW {
|
||||||
public:
|
public:
|
||||||
struct Coeffs {
|
struct Coeffs {
|
||||||
float a1 = 0.0f;
|
double a1 = 0.0;
|
||||||
float a2 = 0.0f;
|
double a2 = 0.0;
|
||||||
float b0 = 0.0f;
|
double b0 = 0.0;
|
||||||
float b1 = 0.0f;
|
double b1 = 0.0;
|
||||||
float b2 = 0.0f;
|
double b2 = 0.0;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Mode {
|
enum Mode {
|
||||||
|
|||||||
Reference in New Issue
Block a user