-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAelFilter.cpp
More file actions
353 lines (260 loc) · 10.4 KB
/
AelFilter.cpp
File metadata and controls
353 lines (260 loc) · 10.4 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
//
// AelFilter.cpp
// AEL
//
// Created by Paulo Jorge Felix Oliveira on 01/06/14.
// Copyright (c) 2014 Paulo Jorge Felix Oliveira. All rights reserved.
//
#include "AelFilter.h"
namespace Ael {
//////////////////////////////////////////////////////////////////
// Classe AelFilter
//////////////////////////////////////////////////////////////////
/******************************************************************
*Construtor da Classe AelFilter
*Parâmetros: float (gain_, cutoff_), int (n_ch, sampleR)
*******************************************************************/
AelFilter::AelFilter(float gain_, float cutoff_, int n_ch, int sampleR) : AelEffect(n_ch, sampleR), gain(gain_), cutoff(cutoff_) { }
void AelFilter::set_gain(float gain_){
if(MORETHAN(gain_, 1.0))
gain = 1.0;
else if (LESSTHAN(gain_, 0.0))
gain = 0.0;
else
gain = gain_;
}
//////////////////////////////////////////////////////////////////
// Classe AelIIR
//////////////////////////////////////////////////////////////////
/******************************************************************
*Construtor da Classe AelIIR
*Parâmetros: float (gain_, cutoff_), int (n_ch, Sr)
*******************************************************************/
AelIIR::AelIIR(float G, float Coff ,int n_ch, int Sr) : AelFilter(G, Coff, n_ch, Sr) , out_1(n_ch), in_1(n_ch) {
coef_a.assign(2, 0.0);
coef_b.assign(1, 0.0);
set_LPF(); //defaut LPF
}
/******************************************************************
*Método set_LPF da Classe AelIIR
*Parâmetros: void
*Define comportamento low pass do filtro
*******************************************************************/
void AelIIR::set_LPF(){
ON = lowpass;
double x = exp(-2*M_PI * (cutoff/getSampleRate()));
coef_a[0] = 1.0 - x;
coef_a[1] = 0.0;
coef_b[0] = x;
}
/******************************************************************
*Método set_HPF da Classe AelIIR
*Parâmetros: void
*Define comportamento high pass do filtro
*******************************************************************/
void AelIIR::set_HPF(){
ON = highpass;
double x = exp(-2*M_PI * (cutoff/getSampleRate()));
coef_a[0]= ((1.0 + x) / 2.0);
coef_a[1] = -coef_a[0];
coef_b[0] = x;
}
void AelIIR::set_cutoff(float cutoff_){
if(MORETHAN(cutoff_, (getSampleRate()/2)))
cutoff = getSampleRate()/2 ;
else if (LESSTHAN(cutoff_, 0.0))
cutoff = 0.0;
else
this->cutoff = cutoff_;
if(ON == lowpass){
set_LPF();
}
else set_HPF();
}
/*******************************************************************
*Função membro processFrame da classe AelIIR
*Parâmetros: AelFrame& frame
*Responsável por processar a frame recebida pelo efeito produzido
*pelo filtro de 1ª ordem
*******************************************************************/
AelFrame& AelIIR::processFrame(AelFrame& Frame){
//y[n] = a0 * x[n] + a1 * x[n-1] + b1 * y[n-1]
AelFrame in = Frame * gain;
Frame = (in * coef_a[0]) + (in_1 * coef_a[1]) + (out_1 * coef_b[0]) ;
out_1 = Frame;
in_1 = in;
Frame = (in * (1 - getWetLevel()) + (Frame * getWetLevel())); //dry/wet
return Frame;
}
/*******************************************************************
*Função membro getCopy
*Parâmetros: void
*Retorna Cópia do efeito, no estado actual em que se encontra
*******************************************************************/
AelEffect* AelIIR::getCopy(){
AelIIR *cp = new AelIIR(gain, cutoff, getNChannels(), getSampleRate());
cp->ON = ON;
if(ON == lowpass){
cp->set_LPF();
}
else cp->set_HPF();
cp->setWetLevel(getWetLevel());
if(!isOn()){
cp->m_turnOff();
}
return cp;
}
//////////////////////////////////////////////////////////////////
// Classe AelButterWorth
//////////////////////////////////////////////////////////////////
AelButterWorth::AelButterWorth(float G, float Coff, float BW, int n_ch, int Sr): AelFilter(G, Coff, n_ch, Sr), out_1(n_ch), out_2(n_ch),
in_1(n_ch), in_2(n_ch), BandWidth(BW)
{
coef_a.assign(3, 0.0);
coef_b.assign(2, 0.0);
set_LPF(); //default
}
/******************************************************************
*Método set_LPF da Classe AelIIR
*Parâmetros: void
*Define comportamento LOW pass do filtro
*******************************************************************/
void AelButterWorth::set_LPF(){
ON = lowpass;
float y = 1 / tan( (M_PI * cutoff) / getSampleRate() );
float pow_2 = pow(y, 2);
coef_a[0] = 1 / ( 1 + (2 * y) + pow_2 ) ;
coef_a[1] = 2 * coef_a[0];
coef_a[2] = coef_a[0];
coef_b[0] = coef_a[1] * (1 - pow_2);
coef_b[1] = coef_a[0] * (1 - (2 * y) + pow_2);
}
/******************************************************************
*Método set_HPF da Classe AelIIR
*Parâmetros: void
*Define comportamento high pass do filtro
*******************************************************************/
void AelButterWorth::set_HPF(){
ON = highpass;
float y = tan( (M_PI * cutoff) / getSampleRate() );
float pow_2 = pow(y, 2);
coef_a[0] = 1 / ( 1 + (2 * y) + pow_2) ;
coef_a[1] = -2 * coef_a[0];
coef_a[2] = coef_a[0];
coef_b[0] = -coef_a[1] * ( pow_2 - 1 );
coef_b[1] = coef_a[0] * ( 1 - ( 2 * y ) + pow_2 );
}
/******************************************************************
*Método set_NOTCH da Classe AelIIR
*Parâmetros: void
*Define comportamento notch do filtro
*******************************************************************/
void AelButterWorth::set_NOTCH(){
ON = rejectband;
BandWidth = 10000;
float y = tan( (M_PI * BandWidth) / getSampleRate() );
float Q = 2 * cos( (2 * M_PI * cutoff) / getSampleRate());
coef_a[0] = 1/ (1 + y);
coef_a[1] = - Q * coef_a[0];
coef_a[2] = coef_a[0];
coef_b[0] = coef_a[1];
coef_b[1] = coef_a[0] * (y -1);
}
/******************************************************************
*Método set_BPF da Classe AelIIR
*Parâmetros: void
*Define comportamento bandpass do filtro
*******************************************************************/
void AelButterWorth::set_BPF(){
ON = bandpass;
float y = 1 / tan( (M_PI * BandWidth) / getSampleRate() );
float Q = 2 * cos( (2 * M_PI * cutoff) / getSampleRate());
coef_a[0] = 1/ (1 + y);
coef_a[1] = 0;
coef_a[2] = - coef_a[0];
coef_b[0] = - y * Q * coef_a[0];
coef_b[1] = coef_a[0] * (y -1);
}
void AelButterWorth::set_bandwidth(float BandWidth_){
if(MORETHAN(BandWidth_, (getSampleRate()/2)))
BandWidth = getSampleRate()/2 ;
else if (LESSTHAN(BandWidth_, 0.0))
BandWidth = 0.0;
else
BandWidth = BandWidth_;
if(ON == rejectband)
set_BPF();
}
void AelButterWorth::set_cutoff(float cutoff_){
if(MORETHAN(cutoff_, (getSampleRate()/2)))
cutoff = getSampleRate()/2 ;
else if (LESSTHAN(cutoff_, 0.0))
cutoff = 0.0;
else
cutoff = cutoff_;
switch (ON) {
case lowpass:
set_LPF();
break;
case highpass:
set_HPF();
break;
case rejectband:
set_NOTCH();
break;
case bandpass:
set_BPF();
break;
default:
break;
}
}
/*******************************************************************
*Função membro processFrame da classe AelButterWorth
*Parâmetros: AelFrame& frame
*Responsável por processar a frame recebida pelo efeito produzido
*pelo filtro de 2ª ordem
*******************************************************************/
AelFrame& AelButterWorth::processFrame(AelFrame& Frame){
//y(n) = a0x(n) + a1x(n-1) + a2x(n-2) - b0y(n - 1) - b1y(n-2).
AelFrame in = Frame * gain;
Frame = (in * coef_a[0]) + (in_1 * coef_a[1]) + (in_2 * coef_a[2]);
Frame = Frame - (out_1 * coef_b[0]) - (out_2 * coef_b[1]) ;
in_2 = in_1;
in_1 = in;
out_2 = out_1;
out_1 = Frame;
Frame = in * (1 - getWetLevel()) + (Frame * getWetLevel()); //dry/wet
return Frame;
}
/*******************************************************************
*Função membro getCopy
*Parâmetros: void
*Retorna Cópia do efeito, no estado actual em que se encontra
*******************************************************************/
AelEffect* AelButterWorth::getCopy(){
AelButterWorth *cp = new AelButterWorth(gain, cutoff, BandWidth ,getNChannels(), getSampleRate());
cp->ON = ON;
switch (ON) {
case lowpass:
cp->set_LPF();
break;
case highpass:
cp->set_HPF();
break;
case rejectband:
cp->set_NOTCH();
break;
case bandpass:
cp->set_BPF();
break;
default:
break;
}
cp->setWetLevel(getWetLevel());
if(!isOn()){
cp->m_turnOff();
}
return cp;
}
}