-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbj_bandpass.c
173 lines (154 loc) · 4.19 KB
/
rbj_bandpass.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
twk.so is a set of LADSPA plugins.
Copyright 2024 Tim Krause
This file is part of twk.so.
twk.so is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
twk.so is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with twk.so. If not, see
<https://www.gnu.org/licenses/>.
Contact: tim.krause@twkrause.ca
*/
#include <ladspa.h>
#define _GNU_SOURCE
#include <math.h>
#include <stdlib.h>
/* (b0/a0) + (b1/a0)*z^-1 + (b2/a0)*z^-2
* H(z) = ---------------------------------------
* 1 + (a1/a0)*z^-1 + (a2/a0)*z^-2
*
* b0 = alpha
* b1 = 0
* b2 = -alpha
* a0 = 1 + alpha
* a1 = -2 cos(omega)
* a2 = 1 - alpha
*
* omega = 2 * pi * fc / fs
* alpha = sin(omega) * sinh( log(2)/2 * bw * omega / sin(omega) )
* = sin(omega) / (2*Q)
*/
enum {
PORT_IN,
PORT_OUT,
PORT_FREQUENCY,
PORT_Q,
PORT_GAIN,
PORT_NPORTS
};
typedef struct {
unsigned long m_sample_rate;
LADSPA_Data *m_pport[PORT_NPORTS];
LADSPA_Data m_z1;
LADSPA_Data m_z2;
LADSPA_Data m_log2d2;
} Bandpass_Data;
static LADSPA_Handle Bandpass_instantiate(
const struct _LADSPA_Descriptor *p_pDescriptor,
unsigned long p_sample_rate ){
Bandpass_Data *l_pBandpass = malloc( sizeof(Bandpass_Data) );
if( l_pBandpass ){
l_pBandpass->m_sample_rate = p_sample_rate;
l_pBandpass->m_z1 = 0.0;
l_pBandpass->m_z2 = 0.0;
l_pBandpass->m_log2d2 = logf(2.0)/2.0;
}
return (LADSPA_Handle)l_pBandpass;
}
static void Bandpass_connect_port(
LADSPA_Handle p_pInstance,
unsigned long p_port,
LADSPA_Data *p_pdata)
{
Bandpass_Data *l_pBandpass = (Bandpass_Data*)p_pInstance;
l_pBandpass->m_pport[p_port] = p_pdata;
}
static void Bandpass_run(
LADSPA_Handle p_pInstance,
unsigned long p_sample_count )
{
Bandpass_Data *l_pBandpass = (Bandpass_Data*)p_pInstance;
unsigned long l_sample;
LADSPA_Data *l_psrc = l_pBandpass->m_pport[PORT_IN];
LADSPA_Data *l_pdst = l_pBandpass->m_pport[PORT_OUT];
LADSPA_Data l_omega = 2.0*M_PI* *l_pBandpass->m_pport[PORT_FREQUENCY] /
l_pBandpass->m_sample_rate;
LADSPA_Data l_sin_omega = sinf( l_omega );
LADSPA_Data l_alpha = l_sin_omega /( 2 * *l_pBandpass->m_pport[PORT_Q]);
LADSPA_Data l_a0 = 1.0 + l_alpha;
LADSPA_Data l_a1 = -2.0 * cosf( l_omega ) / l_a0;
LADSPA_Data l_a2 = (1.0 - l_alpha) / l_a0;
LADSPA_Data l_b0 = l_alpha / l_a0;
LADSPA_Data l_b2 = -l_alpha / l_a0;
LADSPA_Data l_G = exp10f( *l_pBandpass->m_pport[PORT_GAIN] / 20.0 );
for(l_sample=0;l_sample<p_sample_count;l_sample++){
LADSPA_Data l_m = *l_psrc - l_a1*l_pBandpass->m_z1 - l_a2*l_pBandpass->m_z2;
*l_pdst = l_G*(l_m*l_b0 + l_pBandpass->m_z2*l_b2);
l_pBandpass->m_z2 = l_pBandpass->m_z1;
l_pBandpass->m_z1 = l_m;
l_psrc++;
l_pdst++;
}
}
static void Bandpass_cleanup( LADSPA_Handle p_pInstance )
{
free( p_pInstance );
}
static LADSPA_PortDescriptor Bandpass_PortDescriptors[]=
{
LADSPA_PORT_INPUT|LADSPA_PORT_AUDIO,
LADSPA_PORT_OUTPUT|LADSPA_PORT_AUDIO,
LADSPA_PORT_INPUT|LADSPA_PORT_CONTROL,
LADSPA_PORT_INPUT|LADSPA_PORT_CONTROL,
LADSPA_PORT_INPUT|LADSPA_PORT_CONTROL
};
static const char *Bandpass_PortNames[]=
{
"Input",
"Output",
"Frequency",
"Q",
"Gain"
};
static LADSPA_PortRangeHint Bandpass_PortRangeHints[]=
{
{0,0,0},
{0,0,0},
{LADSPA_HINT_BOUNDED_BELOW|LADSPA_HINT_BOUNDED_ABOVE|
LADSPA_HINT_LOGARITHMIC|LADSPA_HINT_DEFAULT_MIDDLE,
10,13000},
{LADSPA_HINT_BOUNDED_BELOW|LADSPA_HINT_BOUNDED_ABOVE|
LADSPA_HINT_DEFAULT_MIDDLE,
0.707,10},
{LADSPA_HINT_BOUNDED_BELOW|LADSPA_HINT_BOUNDED_ABOVE|
LADSPA_HINT_DEFAULT_0,
-60,24}
};
LADSPA_Descriptor RBJBandpassQ_Descriptor=
{
5816,
"RBJ_bandpass_Q",
LADSPA_PROPERTY_HARD_RT_CAPABLE,
"Bandpass RBJ(Q)",
"Timothy William Krause",
"None",
PORT_NPORTS,
Bandpass_PortDescriptors,
Bandpass_PortNames,
Bandpass_PortRangeHints,
NULL,
Bandpass_instantiate,
Bandpass_connect_port,
NULL,
Bandpass_run,
NULL,
NULL,
NULL,
Bandpass_cleanup
};