#include "m_pd.h"
#include <math.h>
#define LOGTEN …
t_float mtof(t_float f)
{ … }
t_float ftom(t_float f)
{ … }
t_float powtodb(t_float f)
{ … }
t_float rmstodb(t_float f)
{ … }
t_float dbtopow(t_float f)
{ … }
t_float dbtorms(t_float f)
{ … }
static t_class *mtof_class;
static void *mtof_new(void)
{ … }
static void mtof_float(t_object *x, t_float f)
{ … }
static t_class *ftom_class;
static void *ftom_new(void)
{ … }
static void ftom_float(t_object *x, t_float f)
{ … }
static t_class *rmstodb_class;
static void *rmstodb_new(void)
{ … }
static void rmstodb_float(t_object *x, t_float f)
{ … }
static t_class *powtodb_class;
static void *powtodb_new(void)
{ … }
static void powtodb_float(t_object *x, t_float f)
{ … }
static t_class *dbtopow_class;
static void *dbtopow_new(void)
{ … }
static void dbtopow_float(t_object *x, t_float f)
{ … }
static t_class *dbtorms_class;
static void *dbtorms_new(void)
{ … }
static void dbtorms_float(t_object *x, t_float f)
{ … }
void x_acoustics_setup(void)
{ … }