add oversampler

This commit is contained in:
2024-05-24 13:28:31 +02:00
parent e4a4a661a0
commit 989dba5a6b
484 changed files with 313937 additions and 0 deletions

22
oversampling/WDL/db2val.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef _WDL_DB2VAL_H_
#define _WDL_DB2VAL_H_
#include <math.h>
#define TWENTY_OVER_LN10 8.6858896380650365530225783783321
#define LN10_OVER_TWENTY 0.11512925464970228420089957273422
#define DB2VAL(x) exp((x)*LN10_OVER_TWENTY)
static inline double VAL2DB(double x)
{
if (x < 0.0000000298023223876953125) return -150.0;
double v=log(x)*TWENTY_OVER_LN10;
return v<-150.0?-150.0:v;
}
static inline double VAL2DB_EX(double x, double mindb)
{
return x <= DB2VAL(mindb) ? mindb : (log(x)*TWENTY_OVER_LN10);
}
#endif