mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
parent
820e282a14
commit
62ae9b7d30
1 changed files with 7 additions and 4 deletions
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <float.h>
|
||||
#include <math.h>
|
||||
#ifdef HAVE_SNDFILE
|
||||
#include <sndfile.h>
|
||||
|
|
@ -303,10 +304,12 @@ static void bq_run(struct builtin *impl, unsigned long samples, int type)
|
|||
y2 = y1;
|
||||
y1 = y;
|
||||
}
|
||||
bq->x1 = x1;
|
||||
bq->x2 = x2;
|
||||
bq->y1 = y1;
|
||||
bq->y2 = y2;
|
||||
#define F(x) (-FLT_MIN < (x) && (x) < FLT_MIN ? 0.0f : (x))
|
||||
bq->x1 = F(x1);
|
||||
bq->x2 = F(x2);
|
||||
bq->y1 = F(y1);
|
||||
bq->y2 = F(y2);
|
||||
#undef F
|
||||
}
|
||||
|
||||
/** bq_lowpass */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue