prosperon/source/engine/sound/dsp.c

655 lines
15 KiB
C
Raw Normal View History

2022-07-04 14:19:52 -05:00
#include "dsp.h"
#include "sound.h"
#include "limits.h"
#include "math.h"
2022-07-06 17:17:06 -05:00
#include "stdlib.h"
2022-07-08 13:54:45 -05:00
#include "iir.h"
2022-07-09 21:46:23 -05:00
#include "log.h"
2022-08-26 09:19:17 -05:00
#include "stb_ds.h"
2023-11-28 22:48:32 -06:00
#include "smbPitchShift.h"
2022-07-04 14:19:52 -05:00
2023-12-18 17:12:05 -06:00
#include "pthread.h"
2022-07-04 14:19:52 -05:00
#define PI 3.14159265
2023-11-27 14:29:55 -06:00
dsp_node *masterbus = NULL;
2022-07-09 21:46:23 -05:00
2023-11-28 22:48:32 -06:00
void iir_free(struct dsp_iir *iir)
{
free(iir->a);
free(iir->b);
free(iir->x);
free(iir->y);
free(iir);
}
void interleave(soundbyte *a, soundbyte *b, soundbyte *restrict stereo, int frames)
2023-11-27 14:29:55 -06:00
{
for (int i = 0; i < frames; i++) {
stereo[i*2] = a[i];
stereo[i*2+1] = b[i];
}
2022-07-06 17:17:06 -05:00
}
void deinterleave(soundbyte *restrict stereo, soundbyte *restrict out, int frames, int channels, int chout)
2023-11-28 22:48:32 -06:00
{
chout--;
for (int i = 0; i < frames; i++)
out[i] = stereo[i*channels+chout];
}
2023-11-27 14:29:55 -06:00
void mono_to_stero(soundbyte *a, soundbyte *stereo, int frames)
2022-07-09 21:46:23 -05:00
{
2023-11-27 14:29:55 -06:00
interleave(a,a,stereo, frames);
2022-07-09 21:46:23 -05:00
}
void mono_expand(soundbyte *restrict buffer, int to, int frames)
2022-07-04 14:19:52 -05:00
{
2023-11-27 14:29:55 -06:00
soundbyte hold[frames];
memcpy(hold, buffer, sizeof(soundbyte)*frames);
2022-07-06 17:17:06 -05:00
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames; i++)
for (int j = 0; j < to; j++)
buffer[i*to+j] = hold[i];
2022-07-04 14:19:52 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_mixer_node()
2022-07-10 19:29:52 -05:00
{
2023-11-28 22:48:32 -06:00
return make_node(NULL, NULL, NULL);
2022-07-10 19:29:52 -05:00
}
2023-11-27 14:29:55 -06:00
void dsp_init()
{
masterbus = dsp_limiter(1.0);
2022-07-04 14:19:52 -05:00
}
2023-11-27 14:29:55 -06:00
soundbyte *dsp_node_out(dsp_node *node)
2022-07-04 14:19:52 -05:00
{
2023-11-27 14:29:55 -06:00
zero_soundbytes(node->cache, BUF_FRAMES*CHANNELS);
if (node->off) return node->cache;
2022-07-04 14:19:52 -05:00
2023-11-27 14:29:55 -06:00
/* Sum all inputs */
for (int i = 0; i < arrlen(node->ins); i++) {
soundbyte *out = dsp_node_out(node->ins[i]);
sum_soundbytes(node->cache, out, BUF_FRAMES*CHANNELS);
}
/* If there's a filter, run it */
if (!node->pass && node->proc)
node->proc(node->data, node->cache, BUF_FRAMES);
2022-07-05 17:24:58 -05:00
2023-11-27 14:29:55 -06:00
scale_soundbytes(node->cache, node->gain, BUF_FRAMES*CHANNELS);
pan_frames(node->cache, node->pan, BUF_FRAMES);
return node->cache;
2022-07-04 14:19:52 -05:00
}
void filter_am_mod(dsp_node *restrict mod, soundbyte *restrict buffer, int frames)
2022-07-04 14:19:52 -05:00
{
2023-11-27 14:29:55 -06:00
soundbyte *m = dsp_node_out(mod);
for (int i = 0; i < frames*CHANNELS; i++) buffer[i] *= m[i];
2022-07-04 14:19:52 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_am_mod(dsp_node *mod)
2022-07-04 14:19:52 -05:00
{
2023-11-28 22:48:32 -06:00
return make_node(mod, filter_am_mod, node_free);
2023-11-27 14:29:55 -06:00
}
2022-07-05 15:12:48 -05:00
2023-11-27 14:29:55 -06:00
/* Add b into a */
void sum_soundbytes(soundbyte *restrict a, soundbyte *restrict b, int samples)
2023-11-27 14:29:55 -06:00
{
for (int i = 0; i < samples; i++) a[i] += b[i];
}
2022-07-12 15:43:02 -05:00
2023-11-27 14:29:55 -06:00
void norm_soundbytes(soundbyte *a, float lvl, int samples)
{
float tar = lvl;
float max = 0 ;
for (int i = 0; i < samples; i++) max = fabsf(a[i]) > max ? fabsf(a[i]) : max;
2023-11-27 14:29:55 -06:00
float mult = max/tar;
scale_soundbytes(a, mult, samples);
2022-07-04 21:44:39 -05:00
}
2022-07-04 14:19:52 -05:00
2023-11-27 14:29:55 -06:00
void scale_soundbytes(soundbyte *a, float scale, int samples)
2022-07-04 21:44:39 -05:00
{
2023-11-27 14:29:55 -06:00
if (scale == 1) return;
for (int i = 0; i < samples; i++) a[i] *= scale;
}
2022-07-04 21:44:39 -05:00
void zero_soundbytes(soundbyte *restrict a, int samples) { memset(a, 0, sizeof(soundbyte)*samples); }
2022-07-04 14:19:52 -05:00
2023-11-27 14:29:55 -06:00
void set_soundbytes(soundbyte *a, soundbyte *b, int samples)
{
zero_soundbytes(a, samples);
sum_soundbytes(a,b,samples);
}
2022-07-05 15:12:48 -05:00
2023-11-27 14:29:55 -06:00
void dsp_node_run(dsp_node *node)
{
zero_soundbytes(node->cache, BUF_FRAMES*CHANNELS);
for (int i = 0; i < arrlen(node->ins); i++) {
soundbyte *out = dsp_node_out(node->ins[i]);
sum_soundbytes(node->cache, out, BUF_FRAMES);
}
}
2022-07-05 11:55:00 -05:00
2024-03-19 17:00:49 -05:00
static int node_count = 0;
2023-11-28 22:48:32 -06:00
dsp_node *make_node(void *data, void (*proc)(void *data, soundbyte *out, int samples), void (*fr)(void *data))
2023-11-27 14:29:55 -06:00
{
dsp_node *self = malloc(sizeof(dsp_node));
memset(self, 0, sizeof(*self));
self->data = data;
self->proc = proc;
self->pass = 0;
self->gain = 1;
2024-03-19 17:00:49 -05:00
self->id = node_count++;
2023-11-27 14:29:55 -06:00
return self;
2022-07-05 15:12:48 -05:00
}
2023-11-27 14:29:55 -06:00
void node_free(dsp_node *node)
2022-07-05 15:12:48 -05:00
{
2024-03-19 17:00:49 -05:00
if (node == masterbus) {
YughWarn("Attempted to delete the master bus.");
return; /* Simple check to not delete the masterbus */
}
2023-12-18 17:12:05 -06:00
pthread_mutex_lock(&soundrun);
2023-11-27 14:29:55 -06:00
unplug_node(node);
if (node->data) {
if (node->data_free)
node->data_free(node->data);
else
free(node->data);
}
2024-03-19 17:00:49 -05:00
2023-12-18 17:12:05 -06:00
free(node);
pthread_mutex_unlock(&soundrun);
2022-07-05 15:12:48 -05:00
}
2023-11-29 07:32:32 -06:00
void dsp_node_free(dsp_node *node) { node_free(node); }
2023-11-27 14:29:55 -06:00
void plugin_node(dsp_node *from, dsp_node *to)
2022-07-06 17:17:06 -05:00
{
2023-11-27 14:29:55 -06:00
if (from->out) return;
arrput(to->ins, from);
from->out = to;
2022-07-06 17:17:06 -05:00
}
2023-11-27 14:29:55 -06:00
/* Unplug the given node from its output */
void unplug_node(dsp_node *node)
2022-07-06 17:17:06 -05:00
{
2023-11-27 14:29:55 -06:00
if (!node->out) return;
for (int i = 0; arrlen(node->out->ins); i++)
if (node == node->out->ins[i]) {
arrdelswap(node->out->ins, i);
node->out = NULL;
return;
2022-07-06 17:17:06 -05:00
}
}
2023-11-27 14:29:55 -06:00
typedef struct {
float amp;
float freq;
float phase; /* from 0 to 1, marking where we are */
float (*filter)(float phase);
} phasor;
2022-07-06 17:17:06 -05:00
float sin_phasor(float p)
{
return sin(2*PI*p);
}
float square_phasor(float p)
{
return lround(p);
}
float saw_phasor(float p)
{
return 2*p-1;
}
float tri_phasor(float p)
{
return 4*(p * 0.5f ? p : (1-p)) - 1;
}
2023-11-27 14:29:55 -06:00
void filter_phasor(phasor *p, soundbyte *buffer, int frames)
2022-07-06 17:17:06 -05:00
{
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames; i++) {
buffer[i] = p->filter(p->phase) * p->amp;
p->phase += p->freq/SAMPLERATE;
}
p->phase = p->phase - (int)p->phase;
mono_expand(buffer, CHANNELS, frames);
}
dsp_node *dsp_phasor(float amp, float freq, float (*filter)(float))
{
phasor *p = malloc(sizeof(*p));
p->amp = amp;
p->freq = freq;
p->phase = 0;
p->filter = filter;
2023-11-28 22:48:32 -06:00
return make_node(p, filter_phasor, NULL);
2023-11-27 14:29:55 -06:00
}
void filter_rectify(void *restrict data, soundbyte *restrict out, int n)
2023-11-27 14:29:55 -06:00
{
for (int i = 0; i < n; i++) out[i] = fabsf(out[i]);
2023-11-27 14:29:55 -06:00
}
dsp_node *dsp_rectify()
{
2023-11-28 22:48:32 -06:00
return make_node(NULL, filter_rectify, NULL);
2023-11-27 14:29:55 -06:00
}
soundbyte sample_whitenoise()
{
return ((float)rand()/(float)(RAND_MAX/2))-1;
2022-07-06 17:17:06 -05:00
}
2023-08-30 18:22:32 -05:00
void gen_whitenoise(void *data, soundbyte *out, int n)
2022-07-06 17:17:06 -05:00
{
for (int i = 0; i < n; i++)
out[i] = sample_whitenoise();
2023-11-27 14:29:55 -06:00
mono_expand(out, CHANNELS, n);
2022-07-06 17:17:06 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_whitenoise()
2022-07-08 13:54:45 -05:00
{
2023-11-28 22:48:32 -06:00
return make_node(NULL, gen_whitenoise, NULL);
2023-11-27 14:29:55 -06:00
}
2022-07-08 13:54:45 -05:00
2023-11-28 22:48:32 -06:00
void gen_pinknoise(struct dsp_iir *pink, soundbyte *out, int n)
2023-11-27 14:29:55 -06:00
{
2023-11-28 22:48:32 -06:00
gen_whitenoise(NULL, out, n);
2022-07-08 13:54:45 -05:00
2023-11-28 22:48:32 -06:00
for (int i = 0; i < n*CHANNELS; i++) {
soundbyte sum = 0;
for (int j = 0; j < 6; j++) {
pink->x[j] = pink->x[j]*pink->b[j] + out[i]*pink->a[j];
sum += pink->x[j];
2022-07-08 13:54:45 -05:00
}
2023-11-28 22:48:32 -06:00
pink->x[6] = out[i] * 0.115926;
out[i] = sum + out[i] * 0.5362 + pink->x[6];
out[i] *= 0.11;
}
/* * https://www.firstpr.com.au/dsp/pink-noise/
2022-07-08 13:54:45 -05:00
b0 = 0.99886 * b0 + white * 0.0555179;
b1 = 0.99332 * b1 + white * 0.0750759;
b2 = 0.96900 * b2 + white * 0.1538520;
b3 = 0.86650 * b3 + white * 0.3104856;
b4 = 0.55000 * b4 + white * 0.5329522;
b5 = -0.7616 * b5 - white * 0.0168980;
pink = b0 + b1 + b2 + b3 + b4 + b5 + b6 + white * 0.5362;
b6 = white * 0.115926;
*/
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_pinknoise()
2022-07-08 13:54:45 -05:00
{
2023-11-28 22:48:32 -06:00
struct dsp_iir *pink = malloc(sizeof(*pink));
*pink = make_iir(6);
float pinka[7] = {0.0555179, 0.0750759, 0.1538520, 0.3104856, 0.5329522, -0.0168980, 0.115926};
float pinkb[7] = {0.99886, 0.99332, 0.969, 0.8665, 0.55, -0.7616, 0.115926};
memcpy(pink->a, pinka, 7*sizeof(float));
memcpy(pink->b, pinkb, 7*sizeof(float));
return make_node(pink, gen_pinknoise, iir_free);
}
void filter_rednoise(soundbyte *restrict last, soundbyte *out, int frames)
2023-11-28 22:48:32 -06:00
{
gen_whitenoise(NULL, out, frames);
for (int i = 0; i < frames*CHANNELS; i++) {
out[i] = (*last + (0.02*out[i]))/1.02;
*last = out[i];
out[i] *= 3.5;
}
}
dsp_node *dsp_rednoise()
{
soundbyte *last = malloc(sizeof(soundbyte));
*last = 0;
return make_node(last,filter_rednoise, NULL);
}
void filter_pitchshift(float *restrict octaves, soundbyte *buffer, int frames)
2023-11-28 22:48:32 -06:00
{
soundbyte ch1[frames];
for (int i = 0; i < frames; i++)
ch1[i] = buffer[i*CHANNELS];
smbPitchShift(*octaves, frames, 1024, 4, SAMPLERATE, ch1, buffer);
mono_expand(buffer, CHANNELS, frames);
}
dsp_node *dsp_pitchshift(float octaves)
{
float *oct = malloc(sizeof(float));
*oct = octaves;
return make_node(oct, filter_pitchshift, NULL);
}
struct timescale
{
float rate;
SRC_STATE *src;
};
static long *src_cb(struct timescale *ts, float **data)
{
return NULL;
2023-11-28 22:48:32 -06:00
}
void filter_timescale(struct timescale *ts, soundbyte *buffer, int frames)
{
}
dsp_node *dsp_timescale(float scale)
{
struct timescale *ts = malloc(sizeof(*ts));
ts->rate = scale;
ts->src = src_callback_new(src_cb, SRC_SINC_FASTEST, scale, NULL, ts);
return make_node(ts, filter_timescale, NULL);
2022-07-08 13:54:45 -05:00
}
2023-11-27 14:29:55 -06:00
soundbyte iir_filter(struct dsp_iir iir, soundbyte val)
2022-07-08 13:54:45 -05:00
{
2023-11-27 14:29:55 -06:00
iir.y[0] = 0.0;
2022-07-08 13:54:45 -05:00
2023-11-27 14:29:55 -06:00
iir.x[0] = val;
2022-07-08 13:54:45 -05:00
2023-11-27 14:29:55 -06:00
for (int i = 0; i < iir.n; i++)
iir.y[0] += iir.a[i] * iir.x[i];
2022-07-08 13:54:45 -05:00
2023-11-27 14:29:55 -06:00
for (int i = 1; i < iir.n; i++)
iir.y[0] -= iir.b[i] * iir.y[i];
2022-07-08 13:54:45 -05:00
2023-11-27 14:29:55 -06:00
/* Shift values in */
for (int i = iir.n-1; i > 0; i--) {
iir.x[i] = iir.x[i-1];
iir.y[i] = iir.y[i-1];
}
return iir.y[0];
2022-07-08 13:54:45 -05:00
}
2023-11-27 14:29:55 -06:00
void filter_iir(struct dsp_iir *iir, soundbyte *buffer, int frames)
2022-07-08 13:54:45 -05:00
{
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames; i++) {
soundbyte v = iir_filter(*iir, buffer[i*CHANNELS]);
for (int j = 0; j < CHANNELS; j++) buffer[i*CHANNELS+j] = v;
}
2022-07-08 13:54:45 -05:00
}
2023-11-28 22:48:32 -06:00
2023-11-27 14:29:55 -06:00
dsp_node *dsp_lpf(float freq)
2022-07-08 13:54:45 -05:00
{
2023-11-27 14:29:55 -06:00
struct dsp_iir *iir = malloc(sizeof(*iir));
*iir = bqlp_dcof(2*freq/SAMPLERATE, 5);
2023-11-28 22:48:32 -06:00
return make_node(iir, filter_iir, iir_free);
2022-07-08 13:54:45 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_hpf(float freq)
2022-07-08 13:54:45 -05:00
{
2023-11-27 14:29:55 -06:00
struct dsp_iir *iir = malloc(sizeof(*iir));
*iir = bqhp_dcof(2*freq/SAMPLERATE,5);
2023-11-28 22:48:32 -06:00
return make_node(iir, filter_iir, iir_free);
2022-07-08 13:54:45 -05:00
}
2023-11-27 14:29:55 -06:00
void filter_delay(delay *d, soundbyte *buf, int frames)
2022-07-06 17:17:06 -05:00
{
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames*CHANNELS; i++) {
buf[i] += ringshift(d->ring)*d->decay;
ringpush(d->ring, buf[i]);
}
2022-07-06 17:17:06 -05:00
}
2023-11-28 22:48:32 -06:00
void delay_free(delay *d)
{
ringfree(d->ring);
free(d);
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_delay(double sec, double decay)
2022-07-06 17:17:06 -05:00
{
2023-11-27 14:29:55 -06:00
delay *d = malloc(sizeof(*d));
d->ms_delay = sec;
d->decay = decay;
d->ring = NULL;
d->ring = ringnew(d->ring, sec*CHANNELS*SAMPLERATE*2); /* Circular buffer size is enough to have the delay */
ringheader(d->ring)->write += CHANNELS*SAMPLERATE*sec;
2023-11-28 22:48:32 -06:00
return make_node(d, filter_delay, delay_free);
}
void filter_fwd_delay(delay *restrict d, soundbyte *restrict buf, int frames)
2023-11-28 22:48:32 -06:00
{
for (int i = 0; i < frames*CHANNELS; i++) {
ringpush(d->ring, buf[i]);
buf[i] += ringshift(d->ring)*d->decay;
}
}
dsp_node *dsp_fwd_delay(double sec, double decay)
{
delay *d = malloc(sizeof(*d));
d-> ms_delay = sec;
d->decay = decay;
d->ring = NULL;
d->ring = ringnew(d->ring, sec*CHANNELS*SAMPLERATE*2);
ringheader(d->ring)->write += CHANNELS*SAMPLERATE*sec;
return make_node(d, filter_fwd_delay, delay_free);
2022-07-10 17:59:15 -05:00
}
/* Get decay constant for a given pole */
/* Samples to decay 1 time constant is exp(-1/timeconstant) */
double tau2pole(double tau)
{
return exp(-1/(tau*SAMPLERATE));
}
2023-08-30 18:22:32 -05:00
void dsp_adsr_fillbuf(struct dsp_adsr *adsr, soundbyte *out, int n)
2022-07-10 17:59:15 -05:00
{
2023-12-04 13:38:37 -06:00
soundbyte val;
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
for (int i = 0; i < n; i++) {
if (adsr->time > adsr->rls) {
adsr->out = 0.f;
goto fin;
}
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
if (adsr->time > adsr->sus) {
// Release phase
adsr->out = adsr->rls_t * adsr->out;
goto fin;
}
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
if (adsr->time > adsr->dec) {
// Sustain phase
adsr->out = adsr->sus_pwr;
goto fin;
}
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
if (adsr->time > adsr->atk) {
// Decay phase
adsr->out = (1 - adsr->dec_t) * adsr->sus_pwr + adsr->dec_t * adsr->out;
goto fin;
}
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
// Attack phase
adsr->out = (1-adsr->atk_t) + adsr->atk_t * adsr->out;
fin:
2022-07-10 17:59:15 -05:00
2023-12-04 13:38:37 -06:00
val = SHRT_MAX * adsr->out;
out[i*CHANNELS] = out[i*CHANNELS+1] = val;
adsr->time += (double)(1000.f / SAMPLERATE);
2022-07-10 17:59:15 -05:00
}
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_adsr(unsigned int atk, unsigned int dec, unsigned int sus, unsigned int rls)
2022-07-10 17:59:15 -05:00
{
2023-11-27 14:29:55 -06:00
struct dsp_adsr *adsr = malloc(sizeof(*adsr));
2022-07-10 17:59:15 -05:00
adsr->atk = atk;
/* decay to 3 tau */
adsr->atk_t = tau2pole(atk / 3000.f);
adsr->dec = dec + adsr->atk;
adsr->dec_t = tau2pole(dec / 3000.f);
adsr->sus = sus + adsr->dec;
adsr->sus_pwr = 0.8f;
adsr->rls = rls + adsr->sus;
adsr->rls_t = tau2pole(rls / 3000.f);
2023-11-28 22:48:32 -06:00
return make_node(adsr, dsp_adsr_fillbuf, NULL);
2023-11-27 14:29:55 -06:00
}
void filter_noise_gate(float *restrict floor, soundbyte *restrict out, int frames)
2023-11-27 14:29:55 -06:00
{
for (int i = 0; i < frames*CHANNELS; i++) out[i] = fabsf(out[i]) < *floor ? 0.0 : out[i];
2022-07-10 19:29:52 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_noise_gate(float floor)
2022-07-10 19:29:52 -05:00
{
2023-11-27 14:29:55 -06:00
float *v = malloc(sizeof(float));
*v = floor;
2023-11-28 22:48:32 -06:00
return make_node(v, filter_noise_gate, NULL);
2023-11-27 14:29:55 -06:00
}
2022-07-10 19:29:52 -05:00
void filter_limiter(float *restrict ceil, soundbyte *restrict out, int n)
2023-11-27 14:29:55 -06:00
{
for (int i = 0; i < n*CHANNELS; i++) out[i] = fabsf(out[i]) > *ceil ? *ceil : out[i];
2022-07-10 19:29:52 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_limiter(float ceil)
2022-07-10 19:29:52 -05:00
{
2023-11-27 14:29:55 -06:00
float *v = malloc(sizeof(float));
*v = ceil;
2023-11-28 22:48:32 -06:00
return make_node(v, filter_limiter, NULL);
2023-11-27 14:29:55 -06:00
}
2022-07-10 19:29:52 -05:00
2023-11-27 14:29:55 -06:00
void dsp_compressor_fillbuf(struct dsp_compressor *comp, soundbyte *out, int n)
{
float val;
float db;
db = comp->target * (val - comp->threshold) / comp->ratio;
for (int i = 0; i < n; i++) {
val = float2db(out[i*CHANNELS]);
if (val < comp->threshold) {
comp->target = comp->rls_tau * comp->target;
val += db;
} else {
comp->target = (1 - comp->atk_tau) + comp->atk_tau * comp->target; // TODO: Bake in the 1 - atk_tau
val -= db;
}
// Apply same compression to both channels
out[i*CHANNELS] = out[i*CHANNELS+1] = db2float(val) * ( out[i*CHANNELS] > 0 ? 1 : -1);
}
2022-07-11 23:21:57 -05:00
}
2023-11-27 14:29:55 -06:00
dsp_node *dsp_compressor()
2022-07-11 23:21:57 -05:00
{
struct dsp_compressor new;
new.ratio = 4000;
new.atk = 50;
new.rls = 250;
new.target = 0.f;
new.threshold = -3.f;
new.atk_tau = tau2pole(new.atk / 3000.f);
new.rls_tau = tau2pole(new.rls / 3000.f);
struct dsp_compressor *c = malloc(sizeof(*c));
*c = new;
2023-11-28 22:48:32 -06:00
return make_node(c, dsp_compressor_fillbuf, NULL);
2022-07-11 23:21:57 -05:00
}
2023-11-27 14:29:55 -06:00
/* Assumes 2 channels in a frame */
void pan_frames(soundbyte *out, float deg, int frames)
2022-07-11 23:21:57 -05:00
{
2023-11-27 14:29:55 -06:00
if (deg == 0.f) return;
2023-11-28 22:48:32 -06:00
if (deg < -1) deg = -1.f;
else if (deg > 1) deg = 1.f;
2022-07-11 23:21:57 -05:00
2023-11-27 14:29:55 -06:00
float db1, db2;
2022-07-11 23:21:57 -05:00
2023-11-27 14:29:55 -06:00
if (deg > 0) {
2023-11-28 22:48:32 -06:00
db1 = pct2db(1 - deg);
db2 = pct2db(deg);
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames; i++) {
soundbyte L = out[i*2];
soundbyte R = out[i*2+1];
out[i*2] = fgain(L, db1);
out[i*2+1] = (R + fgain(L, db2))/2;
2022-07-11 23:21:57 -05:00
}
2023-11-27 14:29:55 -06:00
} else {
2023-11-28 22:48:32 -06:00
db1 = pct2db(1 + deg);
db2 = pct2db(-1*deg);
2023-11-27 14:29:55 -06:00
for (int i = 0; i < frames; i++) {
soundbyte L = out[i*2];
soundbyte R = out[i*2+1];
out[i*2+1] = fgain(R,db1);
out[i*2] = fgain(L, db1) + fgain(R, db2);
2022-07-11 23:21:57 -05:00
}
2023-11-27 14:29:55 -06:00
}
2022-07-11 23:21:57 -05:00
}
void dsp_mono(void *p, soundbyte *restrict out, int n)
2022-07-11 23:21:57 -05:00
{
for (int i = 0; i < n; i++) {
2023-08-30 18:22:32 -05:00
soundbyte val = (out[i*CHANNELS] + out[i*CHANNELS+1]) / 2;
2022-07-11 23:21:57 -05:00
for (int j = 0; j < CHANNELS; j++)
out[i*CHANNELS+j] = val;
}
2022-07-12 15:43:02 -05:00
}
2023-11-27 14:29:55 -06:00
struct bitcrush {
float sr;
float depth;
};
#define ROUND(f) ((float)((f>0.0)?floor(f+0.5):ceil(f-0.5)))
void filter_bitcrush(struct bitcrush *restrict b, soundbyte *restrict out, int frames)
2022-07-12 15:43:02 -05:00
{
2023-11-27 14:29:55 -06:00
int max = pow(2,b->depth) - 1;
int step = SAMPLERATE/b->sr;
2023-08-30 18:22:32 -05:00
2023-11-27 14:29:55 -06:00
int i = 0;
while (i < frames) {
float left = ROUND((out[0]+1.0)*max)/(max-1.0);
float right = ROUND((out[1]+1.0)*max)/(max-1.0);
for (int j = 0; j < step && i < frames; j++) {
out[0] = left;
out[1] = right;
out += CHANNELS;
i++;
}
}
}
2023-08-30 18:22:32 -05:00
2023-11-27 14:29:55 -06:00
dsp_node *dsp_bitcrush(float sr, float res)
{
struct bitcrush *b = malloc(sizeof(*b));
b->sr = sr;
b->depth = res;
2023-11-28 22:48:32 -06:00
return make_node(b, filter_bitcrush, NULL);
}