-
Notifications
You must be signed in to change notification settings - Fork 0
/
bfcc~.c
571 lines (439 loc) · 15.4 KB
/
bfcc~.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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
/*
bfcc~ - A Bark Frequency Cepstrum Analysis external.
Copyright 2009 William Brent
This file is part of timbreID.
timbreID 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.
timbreID 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 this program. If not, see <http://www.gnu.org/licenses/>.
version 0.2.9, November 28, 2011
¥ 0.2.9 incorporating tIDLib.h after success using it in barkSpec~.c. Need to keep overlap variable and function setting, since it's the only way to know sampling rate for sure. If you're in a subpatch with an overlap of 2, the x->sr will show up as 2x the normal sampling rate, so we need to correct for it based on overlap in order to get the correct x->sr for filterbank construction. Should probably put this back in barkSpec~ and melSpec~
¥ 0.2.8 fixed a memory leak: wasn't freeing memory for x_filterbank_sizes. made power spectrum computation the default, and changed the squaring function to a magnitude function instead. in the case that power spectrum is used, this saves needless computation of sqrt and subsequent squaring. wherever possible, using getbytes() directly instead of getting 0 bytes and resizing. corrected create_filterbank declaration in _setup to show that it only has one argument, not two.
¥ 0.2.7 fixed a memory issue in _make_filterbank(): was freeing window*sizeof(float) bytes instead of window_half*sizeof(float) bytes
¥ 0.2.6 decided to go with a switch for either summing power in filters, or averaging. default is summing.
¥ 0.2.5 changed filterbank_multiply so that sum of power in each filter is divided by the number of points in the filter.
¥Ê0.2.4 added an ifndef M_PI for guaranteed windows compilation
¥ 0.2.3 adds a #define M_PI for windows compilation, and declares all functions except _setup static
¥ 0.2.2 is part of the update that ensures all function names are prepended by the external name (bfcc_ or bfcc_tilde_, etc).
¥ 0.2.1 adds flexible filterwidth memory allocation
¥ 0.2.0 implements mayer_realfft
*/
#include "tIDLib.h"
static t_class *bfcc_tilde_class;
typedef struct _bfcc_tilde
{
t_object x_obj;
t_float sr;
t_float n;
t_float window;
int overlap;
int powerSpectrum;
int normalize;
int filterAvg;
int windowFunction;
double lastDspTime;
int sizeFilterFreqs;
int numFilters;
t_float barkSpacing;
t_float *x_filterFreqs;
t_filter *x_filterbank;
t_sample *signal_R;
t_float *bfcc;
t_float *blackman;
t_float *cosine;
t_float *hamming;
t_float *hann;
t_outlet *x_featureList;
t_float x_f;
} t_bfcc_tilde;
/* ------------------------ bfcc~ -------------------------------- */
static void bfcc_tilde_bang(t_bfcc_tilde *x)
{
int i, j, window, windowHalf, bangSample;
t_atom *listOut;
t_sample *signal_R, *signal_I;
t_float *windowFuncPtr;
double currentTime;
window = x->window;
windowHalf = window * 0.5;
// create local memory
listOut = (t_atom *)t_getbytes(x->numFilters*sizeof(t_atom));
signal_R = (t_sample *)t_getbytes(window*sizeof(t_sample));
signal_I = (t_sample *)t_getbytes((windowHalf+1)*sizeof(t_sample));
currentTime = clock_gettimesince(x->lastDspTime);
bangSample = (int)(((currentTime/1000.0)*x->sr)+0.5); // round
if (bangSample < 0)
bangSample = 0;
else if ( bangSample >= x->n )
bangSample = x->n - 1;
// construct analysis window using bangSample as the end of the window
for(i=0, j=bangSample; i<window; i++, j++)
signal_R[i] = x->signal_R[j];
// set window function
windowFuncPtr = x->hann; //default case to get rid of compile warning
switch(x->windowFunction)
{
case 0:
break;
case 1:
windowFuncPtr = x->blackman;
break;
case 2:
windowFuncPtr = x->cosine;
break;
case 3:
windowFuncPtr = x->hamming;
break;
case 4:
windowFuncPtr = x->hann;
break;
default:
break;
};
// if windowFunction == 0, skip the windowing (rectangular)
if(x->windowFunction>0)
for(i=0; i<window; i++, windowFuncPtr++)
signal_R[i] *= *windowFuncPtr;
mayer_realfft(window, signal_R);
tIDLib_realfftUnpack(window, windowHalf, signal_R, signal_I);
tIDLib_power(windowHalf+1, signal_R, signal_I);
// power spectrum sometimes generates lower scores than magnitude. make it optional.
if(!x->powerSpectrum)
tIDLib_mag(windowHalf+1, signal_R);
tIDLib_filterbankMultiply(signal_R, x->normalize, x->filterAvg, x->x_filterbank, x->numFilters);
tIDLib_cosineTransform(x->bfcc, signal_R, x->numFilters);
for(i=0; i<x->numFilters; i++)
SETFLOAT(listOut+i, x->bfcc[i]);
outlet_list(x->x_featureList, 0, x->numFilters, listOut);
// free local memory
t_freebytes(listOut, x->numFilters*sizeof(t_atom));
t_freebytes(signal_R, window*sizeof(t_sample));
t_freebytes(signal_I, (windowHalf+1)*sizeof(t_sample));
}
static void bfcc_tilde_create_filterbank(t_bfcc_tilde *x, t_floatarg bs)
{
int oldNumFilters;
x->barkSpacing = bs;
oldNumFilters = x->numFilters;
x->numFilters = tIDLib_getBarkFilterSpacing(&x->x_filterFreqs, x->sizeFilterFreqs, x->barkSpacing, x->sr);
x->sizeFilterFreqs = x->numFilters+2;
x->bfcc = (t_float *)t_resizebytes(x->bfcc, oldNumFilters*sizeof(t_float), x->numFilters*sizeof(t_float));
tIDLib_createFilterbank(x->x_filterFreqs, &x->x_filterbank, oldNumFilters, x->numFilters, x->window, x->sr);
}
static void bfcc_tilde_hat(t_bfcc_tilde *x, t_floatarg filt)
{
int i, idx;
idx = filt;
if(idx>=x->numFilters)
error("filter %i does not exist.", idx);
else if(idx < 0)
error("filter %i does not exist.", idx);
else
{
post("size[%i]: %i", idx, x->x_filterbank[idx].size);
for(i=0; i<x->x_filterbank[idx].size; i++)
post("val %i: %f", i, x->x_filterbank[idx].filter[i]);
post("idxLo: %i, idxHi: %i", x->x_filterbank[idx].indices[0], x->x_filterbank[idx].indices[1]);
}
}
static void bfcc_tilde_window(t_bfcc_tilde *x, t_floatarg ws)
{
int i, isPow2, window, oldNumFilters;
window = ws;
isPow2 = window && !( (window-1) & window );
if( !isPow2 )
error("requested window size is not a power of 2.");
else
{
x->signal_R = (t_sample *)t_resizebytes(x->signal_R, (x->window+x->n)*sizeof(t_sample), (window+x->n)*sizeof(t_sample));
x->blackman = (t_float *)t_resizebytes(x->blackman, x->window*sizeof(t_float), window*sizeof(t_float));
x->cosine = (t_float *)t_resizebytes(x->cosine, x->window*sizeof(t_float), window*sizeof(t_float));
x->hamming = (t_float *)t_resizebytes(x->hamming, x->window*sizeof(t_float), window*sizeof(t_float));
x->hann = (t_float *)t_resizebytes(x->hann, x->window*sizeof(t_float), window*sizeof(t_float));
x->window = (t_float)window;
// re-init window functions
tIDLib_blackmanWindow(x->blackman, x->window);
tIDLib_cosineWindow(x->cosine, x->window);
tIDLib_hammingWindow(x->hamming, x->window);
tIDLib_hannWindow(x->hann, x->window);
// initialize signal buffer
for(i=0; i<x->window+x->n; i++)
x->signal_R[i] = 0.0;
oldNumFilters = x->numFilters;
x->numFilters = tIDLib_getBarkFilterSpacing(&x->x_filterFreqs, x->sizeFilterFreqs, x->barkSpacing, x->sr);
x->sizeFilterFreqs = x->numFilters+2;
x->bfcc = (t_float *)t_resizebytes(x->bfcc, oldNumFilters*sizeof(t_float), x->numFilters*sizeof(t_float));
tIDLib_createFilterbank(x->x_filterFreqs, &x->x_filterbank, oldNumFilters, x->numFilters, x->window, x->sr);
post("window size: %i", (int)x->window);
}
}
static void bfcc_tilde_overlap(t_bfcc_tilde *x, t_floatarg o)
{
int overlap;
overlap = o;
// this change will be picked up in _dsp, where the filterbank will be recreated based on the samplerate sp[0]->s_sr/x->overlap;
if(overlap > 0)
x->overlap = overlap;
else
error("overlap must be at least 1.");
post("overlap: %i", x->overlap);
}
static void bfcc_tilde_windowFunction(t_bfcc_tilde *x, t_floatarg f)
{
f = (f<0)?0:f;
f = (f>4)?4:f;
x->windowFunction = f;
switch(x->windowFunction)
{
case 0:
post("window function: rectangular.");
break;
case 1:
post("window function: blackman.");
break;
case 2:
post("window function: cosine.");
break;
case 3:
post("window function: hamming.");
break;
case 4:
post("window function: hann.");
break;
default:
break;
};
}
static void bfcc_tilde_filter_avg(t_bfcc_tilde *x, t_floatarg avg)
{
avg = (avg<0)?0:avg;
avg = (avg>1)?1:avg;
x->filterAvg = avg;
if(x->filterAvg)
post("averaging energy in filters.");
else
post("summing energy in filters.");
}
// magnitude spectrum == 0, power spectrum == 1
static void bfcc_tilde_powerSpectrum(t_bfcc_tilde *x, t_floatarg spec)
{
spec = (spec<0)?0:spec;
spec = (spec>1)?1:spec;
x->powerSpectrum = spec;
if(x->powerSpectrum)
post("using power spectrum for BFCC computation.");
else
post("using magnitude spectrum for BFCC computation.");
}
static void bfcc_tilde_normalize(t_bfcc_tilde *x, t_floatarg norm)
{
norm = (norm<0)?0:norm;
norm = (norm>1)?1:norm;
x->normalize = norm;
if(x->normalize)
post("spectrum normalization ON.");
else
post("spectrum normalization OFF.");
}
static void *bfcc_tilde_new(t_symbol *s, int argc, t_atom *argv)
{
t_bfcc_tilde *x = (t_bfcc_tilde *)pd_new(bfcc_tilde_class);
int i, isPow2;
s=s;
x->x_featureList = outlet_new(&x->x_obj, gensym("list"));
if(argc > 1)
{
x->window = atom_getfloat(argv); // should perform a check for >64 && power of two
isPow2 = (int)x->window && !( ((int)x->window-1) & (int)x->window );
if(!isPow2)
{
error("requested window size is not a power of 2. default value of 1024 used instead.");
x->window = 1024;
};
x->barkSpacing = atom_getfloat(argv+1);
}
else if(argc > 0)
{
x->window = atom_getfloat(argv);
isPow2 = (int)x->window && !( ((int)x->window-1) & (int)x->window );
if(!isPow2)
{
error("requested window size is not a power of 2. default value of 1024 used instead.");
x->window = 1024;
};
x->barkSpacing = 0.5;
}
else
{
x->window = 1024;
x->barkSpacing = 0.5;
}
x->sr = 44100.0;
x->n = 64.0;
x->overlap = 1;
x->windowFunction = 4; // 4 is hann window
x->powerSpectrum = 0; // choose mag (0) or power (1) spec
x->normalize = 1; // this is generally a good thing, but should be off for concatenative synth
x->filterAvg = 0;
x->lastDspTime = clock_getlogicaltime();
x->sizeFilterFreqs = 0;
x->numFilters = 0; // this is just an init size that will be updated in createFilterbank anyway.
x->signal_R = (t_sample *)t_getbytes((x->window+x->n)*sizeof(t_sample));
// initialize signal buffer
for(i=0; i<x->window+x->n; i++)
x->signal_R[i] = 0.0;
x->blackman = (t_float *)t_getbytes(x->window*sizeof(t_float));
x->cosine = (t_float *)t_getbytes(x->window*sizeof(t_float));
x->hamming = (t_float *)t_getbytes(x->window*sizeof(t_float));
x->hann = (t_float *)t_getbytes(x->window*sizeof(t_float));
// initialize signal windowing functions
tIDLib_blackmanWindow(x->blackman, x->window);
tIDLib_cosineWindow(x->cosine, x->window);
tIDLib_hammingWindow(x->hamming, x->window);
tIDLib_hannWindow(x->hann, x->window);
// grab memory
x->x_filterbank = (t_filter *)t_getbytes(0);
x->x_filterFreqs = (t_float *)t_getbytes(0);
x->numFilters = tIDLib_getBarkFilterSpacing(&x->x_filterFreqs, x->sizeFilterFreqs, x->barkSpacing, x->sr);
x->sizeFilterFreqs = x->numFilters+2;
x->bfcc = (t_float *)t_getbytes(x->numFilters*sizeof(t_float));
tIDLib_createFilterbank(x->x_filterFreqs, &x->x_filterbank, 0, x->numFilters, x->window, x->sr);
return (x);
}
static t_int *bfcc_tilde_perform(t_int *w)
{
int i, n;
t_bfcc_tilde *x = (t_bfcc_tilde *)(w[1]);
t_sample *in = (t_float *)(w[2]);
n = w[3];
// shift signal buffer contents back.
for(i=0; i<(x->window-n); i++)
x->signal_R[i] = x->signal_R[i+n];
// write new block to end of signal buffer.
for(i=0; i<n; i++)
x->signal_R[(int)x->window-n+i] = in[i];
x->lastDspTime = clock_getlogicaltime();
return (w+4);
}
static void bfcc_tilde_dsp(t_bfcc_tilde *x, t_signal **sp)
{
int i, oldNumFilters;
dsp_add(
bfcc_tilde_perform,
3,
x,
sp[0]->s_vec,
sp[0]->s_n
);
// compare n to stored n and recalculate filterbank if different
if( sp[0]->s_sr != (x->sr*x->overlap) || sp[0]->s_n != x->n )
{
x->signal_R = (t_sample *)t_resizebytes(x->signal_R, (x->window+x->n) * sizeof(t_sample), (x->window+sp[0]->s_n) * sizeof(t_sample));
x->sr = sp[0]->s_sr/x->overlap;
x->n = sp[0]->s_n;
// init signal buffer
for(i=0; i<x->window+x->n; i++)
x->signal_R[i] = 0.0;
oldNumFilters = x->numFilters;
x->numFilters = tIDLib_getBarkFilterSpacing(&x->x_filterFreqs, x->sizeFilterFreqs, x->barkSpacing, x->sr);
x->sizeFilterFreqs = x->numFilters+2;
x->bfcc = (t_float *)t_resizebytes(x->bfcc, oldNumFilters*sizeof(t_float), x->numFilters*sizeof(t_float));
tIDLib_createFilterbank(x->x_filterFreqs, &x->x_filterbank, oldNumFilters, x->numFilters, x->window, x->sr);
post("bfcc~: window size: %i. overlap: %i. sampling rate: %i, block size: %i", (int)x->window, x->overlap, (int)x->sr, (int)x->n);
};
};
static void bfcc_tilde_free(t_bfcc_tilde *x)
{
int i;
// free the bfcc memory
t_freebytes(x->bfcc, x->numFilters*sizeof(t_float));
// free the input buffer memory
t_freebytes(x->signal_R, (x->window+x->n)*sizeof(t_sample));
// free the window memory
t_freebytes(x->blackman, x->window*sizeof(t_float));
t_freebytes(x->cosine, x->window*sizeof(t_float));
t_freebytes(x->hamming, x->window*sizeof(t_float));
t_freebytes(x->hann, x->window*sizeof(t_float));
// free the filterFreqs memory
t_freebytes(x->x_filterFreqs, x->sizeFilterFreqs*sizeof(t_float));
// free the filterbank memory
for(i=0; i<x->numFilters; i++)
t_freebytes(x->x_filterbank[i].filter, x->x_filterbank[i].size*sizeof(t_float));
t_freebytes(x->x_filterbank, x->numFilters*sizeof(t_filter));
}
void bfcc_tilde_setup(void)
{
bfcc_tilde_class =
class_new(
gensym("bfcc~"),
(t_newmethod)bfcc_tilde_new,
(t_method)bfcc_tilde_free,
sizeof(t_bfcc_tilde),
CLASS_DEFAULT,
A_GIMME,
0
);
CLASS_MAINSIGNALIN(bfcc_tilde_class, t_bfcc_tilde, x_f);
class_addbang(bfcc_tilde_class, bfcc_tilde_bang);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_create_filterbank,
gensym("filterbank"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_hat,
gensym("hat"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_window,
gensym("window"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_overlap,
gensym("overlap"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_windowFunction,
gensym("window_function"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_filter_avg,
gensym("filter_avg"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_powerSpectrum,
gensym("power_spectrum"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_normalize,
gensym("normalize"),
A_DEFFLOAT,
0
);
class_addmethod(
bfcc_tilde_class,
(t_method)bfcc_tilde_dsp,
gensym("dsp"),
0
);
}