-
Notifications
You must be signed in to change notification settings - Fork 0
/
specIrregularity~.c
498 lines (391 loc) · 11.8 KB
/
specIrregularity~.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
/*
specIrregularity~
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.0.4, December 22, 2011
¥ 0.0.4 incorporating tIDLib.h for timbreID-0.6.0 release
¥ 0.0.3 as part of timbreID-0.5 update, getting rid of unnecessary getbytes(0) calls. also adding power spectrum option.
¥Ê0.0.2 added an ifndef M_PI for guaranteed windows compilation
*/
#include "tIDLib.h"
static t_class *specIrregularity_tilde_class;
typedef struct _specIrregularity_tilde
{
t_object x_obj;
t_float sr;
t_float n;
int algorithm;
int windowFunction;
int overlap;
int powerSpectrum;
int normalize;
int window;
double lastDspTime;
t_sample *signal_R;
t_float *blackman;
t_float *cosine;
t_float *hamming;
t_float *hann;
t_outlet *x_irregularity;
t_float x_f;
} t_specIrregularity_tilde;
/* ------------------------ specIrregularity~ -------------------------------- */
static void specIrregularity_tilde_bang(t_specIrregularity_tilde *x)
{
int i, j, window, windowHalf, bangSample;
t_sample *signal_R, *signal_I;
t_float divisor, irregularity, *windowFuncPtr;
double currentTime;
window = x->window;
windowHalf = window*0.5;
// create local memory
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);
if(!x->powerSpectrum)
tIDLib_mag(windowHalf+1, signal_R);
if(x->normalize)
tIDLib_normal(windowHalf+1, signal_R);
divisor=0.0;
irregularity=0.0;
if(x->algorithm)
{
// Krimphoff
for(i=1; i<windowHalf; i++)
{
t_float localAvg;
localAvg = 0;
for(j=0; j<3; j++)
localAvg += signal_R[i-1+j];
localAvg *= 0.333333333333;
irregularity += fabs(signal_R[i] - localAvg);
//irregularity = log10(irregularity);
}
}
else
{
// Jensen
for(i=0; i<=windowHalf; i++)
{
if(i==windowHalf)
irregularity += signal_R[i] * signal_R[i];
else
irregularity += pow(signal_R[i] - signal_R[i+1], 2);
divisor += signal_R[i] * signal_R[i];
}
divisor = (divisor==0)?1.0:divisor;
irregularity /= divisor;
}
outlet_float(x->x_irregularity, irregularity);
// free local memory
t_freebytes(signal_R, window*sizeof(t_sample));
t_freebytes(signal_I, (windowHalf+1)*sizeof(t_sample));
}
static void specIrregularity_tilde_window(t_specIrregularity_tilde *x, t_floatarg w)
{
int i, window, isPow2;
window = w;
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);
// init signal buffer
for(i=0; i<(x->window+x->n); i++)
x->signal_R[i] = 0.0;
post("window size: %i", (int)x->window);
}
}
static void specIrregularity_tilde_overlap(t_specIrregularity_tilde *x, t_floatarg o)
{
int overlap;
overlap = o;
// this change will be picked up in _dsp, where things will be updated 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 specIrregularity_tilde_windowFunction(t_specIrregularity_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;
};
}
// magnitude spectrum == 0, power spectrum == 1
static void specIrregularity_tilde_powerSpectrum(t_specIrregularity_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");
else
post("using magnitude spectrum");
}
static void specIrregularity_tilde_normalize(t_specIrregularity_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 specIrregularity_tilde_algorithm(t_specIrregularity_tilde *x, t_floatarg a)
{
a = (a<0)?0:a;
a = (a>1)?1:a;
x->algorithm = a;
switch(x->algorithm)
{
case 0:
post("Jensen irregularity.");
break;
case 1:
post("Krimphoff irregularity.");
break;
default:
break;
};
}
static void *specIrregularity_tilde_new(t_symbol *s, int argc, t_atom *argv)
{
t_specIrregularity_tilde *x = (t_specIrregularity_tilde *)pd_new(specIrregularity_tilde_class);
int i, isPow2;
s=s;
x->x_irregularity = outlet_new(&x->x_obj, &s_float);
if(argc > 1)
{
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->algorithm = atom_getfloat(argv+1);
x->algorithm = (x->algorithm<0)?0:x->algorithm;
x->algorithm = (x->algorithm>1)?1:x->algorithm;
}
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->algorithm = 0;
}
else
{
x->window = 1024;
x->algorithm = 0;
}
x->sr = 44100.0;
x->n = 64.0;
x->overlap = 1;
x->windowFunction = 4; // 4 is hann window
x->powerSpectrum = 0;
x->normalize = 0;
x->lastDspTime = clock_getlogicaltime();
x->signal_R = (t_sample *)t_getbytes((x->window+x->n) * sizeof(t_sample));
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);
post("specIrregularity~: window size: %i", (int)x->window);
return (x);
}
static t_int *specIrregularity_tilde_perform(t_int *w)
{
int i, n;
t_specIrregularity_tilde *x = (t_specIrregularity_tilde *)(w[1]);
t_sample *in = (t_float *)(w[2]);
n = w[3];
// shift signal buffer contents back.
for(i=0; i<x->window; 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+i] = in[i];
x->lastDspTime = clock_getlogicaltime();
return (w+4);
}
static void specIrregularity_tilde_dsp(t_specIrregularity_tilde *x, t_signal **sp)
{
int i;
dsp_add(
specIrregularity_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;
x->lastDspTime = clock_getlogicaltime();
// init signal buffer
for(i=0; i<(x->window+x->n); i++)
x->signal_R[i] = 0.0;
post("specIrregularity~: window size: %i. overlap: %i. sampling rate: %i, block size: %i", (int)x->window, x->overlap, (int)x->sr, (int)x->n);
};
};
static void specIrregularity_tilde_free(t_specIrregularity_tilde *x)
{
// 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));
}
void specIrregularity_tilde_setup(void)
{
specIrregularity_tilde_class =
class_new(
gensym("specIrregularity~"),
(t_newmethod)specIrregularity_tilde_new,
(t_method)specIrregularity_tilde_free,
sizeof(t_specIrregularity_tilde),
CLASS_DEFAULT,
A_GIMME,
0
);
CLASS_MAINSIGNALIN(specIrregularity_tilde_class, t_specIrregularity_tilde, x_f);
class_addbang(specIrregularity_tilde_class, specIrregularity_tilde_bang);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_window,
gensym("window"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_overlap,
gensym("overlap"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_windowFunction,
gensym("window_function"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_powerSpectrum,
gensym("power_spectrum"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_normalize,
gensym("normalize"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_algorithm,
gensym("algorithm"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_tilde_class,
(t_method)specIrregularity_tilde_dsp,
gensym("dsp"),
0
);
}