-
Notifications
You must be signed in to change notification settings - Fork 0
/
specIrregularity.c
568 lines (452 loc) · 14.4 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
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
/*
specIrregularity - A non-real-time spectral irregularity 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.0.4, December 23, 2011
¥ 0.0.4 incorporates the tIDLib.h header
¥ 0.0.3 changed windowing functions so that they are computed ahead of time, this required considerable changes to the windowing stuff since 0.0.2 and before. changed _bang() to remove needless end_samp calculation and pass length_samp rather than window to _analyze() so that windowing will not cover the zero padded section. made power spectrum computation the first step, 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.
¥Ê0.0.2 added an ifndef M_PI for guaranteed windows compilation
*/
#include "tIDLib.h"
static t_class *specIrregularity_class;
typedef struct _specIrregularity
{
t_object x_obj;
t_float sr;
t_float window;
int algorithm;
int normalize;
int powerSpectrum;
int windowFunction;
int windowFuncSize;
int maxWindowSize;
int *powersOfTwo;
int powTwoArrSize;
t_sample *signal_R;
t_float *blackman;
t_float *cosine;
t_float *hamming;
t_float *hann;
t_word *x_vec;
t_symbol *x_arrayname;
int x_arrayPoints;
t_outlet *x_irregularity;
} t_specIrregularity;
/* ------------------------ specIrregularity -------------------------------- */
static void specIrregularity_analyze(t_specIrregularity *x, t_floatarg start, t_floatarg n)
{
int i, j, oldWindow, window, windowHalf, startSamp, endSamp, lengthSamp;
t_float divisor, irregularity, *windowFuncPtr;
t_sample *signal_I;
t_garray *a;
if(!(a = (t_garray *)pd_findbyclass(x->x_arrayname, garray_class)))
pd_error(x, "%s: no such array", x->x_arrayname->s_name);
else if(!garray_getfloatwords(a, &x->x_arrayPoints, &x->x_vec))
pd_error(x, "%s: bad template for specIrregularity", x->x_arrayname->s_name);
else
{
startSamp = start;
startSamp = (startSamp<0)?0:startSamp;
if(n)
endSamp = startSamp + n-1;
else
endSamp = startSamp + x->window-1;
if(endSamp > x->x_arrayPoints)
endSamp = x->x_arrayPoints-1;
lengthSamp = endSamp-startSamp+1;
if(endSamp <= startSamp)
{
error("bad range of samples.");
return;
}
if(lengthSamp > x->powersOfTwo[x->powTwoArrSize-1])
{
post("WARNING: specIrregularity: window truncated because requested size is larger than the current max_window setting. Use the max_window method to allow larger windows.");
lengthSamp = x->powersOfTwo[x->powTwoArrSize-1];
window = lengthSamp;
endSamp = startSamp + window - 1;
}
else
{
i=0;
while(lengthSamp > x->powersOfTwo[i])
i++;
window = x->powersOfTwo[i];
}
windowHalf = window * 0.5;
if(x->window != window)
{
oldWindow = x->window;
x->window = window;
x->signal_R = (t_sample *)t_resizebytes(x->signal_R, oldWindow*sizeof(t_sample), x->window*sizeof(t_sample));
}
if(x->windowFuncSize != lengthSamp)
{
x->blackman = (t_float *)t_resizebytes(x->blackman, x->windowFuncSize*sizeof(t_float), lengthSamp*sizeof(t_float));
x->cosine = (t_float *)t_resizebytes(x->cosine, x->windowFuncSize*sizeof(t_float), lengthSamp*sizeof(t_float));
x->hamming = (t_float *)t_resizebytes(x->hamming, x->windowFuncSize*sizeof(t_float), lengthSamp*sizeof(t_float));
x->hann = (t_float *)t_resizebytes(x->hann, x->windowFuncSize*sizeof(t_float), lengthSamp*sizeof(t_float));
x->windowFuncSize = lengthSamp;
tIDLib_blackmanWindow(x->blackman, x->windowFuncSize);
tIDLib_cosineWindow(x->cosine, x->windowFuncSize);
tIDLib_hammingWindow(x->hamming, x->windowFuncSize);
tIDLib_hannWindow(x->hann, x->windowFuncSize);
}
// create local memory
signal_I = (t_sample *)t_getbytes((windowHalf+1)*sizeof(t_sample));
// construct analysis window
for(i=0, j=startSamp; j<=endSamp; i++, j++)
x->signal_R[i] = x->x_vec[j].w_float;
// 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<lengthSamp; i++, windowFuncPtr++)
x->signal_R[i] *= *windowFuncPtr;
// then zero pad the end
for(; i<window; i++)
x->signal_R[i] = 0.0;
mayer_realfft(window, x->signal_R);
tIDLib_realfftUnpack(window, windowHalf, x->signal_R, signal_I);
tIDLib_power(windowHalf+1, x->signal_R, signal_I);
// power spectrum sometimes generates lower scores than magnitude. make it optional.
if(!x->powerSpectrum)
tIDLib_mag(windowHalf+1, x->signal_R);
if(x->normalize)
tIDLib_normal(windowHalf+1, x->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 += x->signal_R[i-1+j];
localAvg *= 0.333333333333;
irregularity += fabs(x->signal_R[i] - localAvg);
//irregularity = log10(irregularity);
}
}
else
{
// Jensen
for(i=0; i<=windowHalf; i++)
{
if(i==windowHalf)
irregularity += x->signal_R[i] * x->signal_R[i];
else
irregularity += pow(x->signal_R[i] - x->signal_R[i+1], 2);
divisor += x->signal_R[i] * x->signal_R[i];
}
irregularity /= divisor;
}
outlet_float(x->x_irregularity, irregularity);
// free local memory
t_freebytes(signal_I, (windowHalf+1)*sizeof(t_sample));
}
}
// analyze the whole damn array
static void specIrregularity_bang(t_specIrregularity *x)
{
int window, startSamp, lengthSamp;
t_garray *a;
if(!(a = (t_garray *)pd_findbyclass(x->x_arrayname, garray_class)))
pd_error(x, "%s: no such array", x->x_arrayname->s_name);
else if(!garray_getfloatwords(a, &x->x_arrayPoints, &x->x_vec))
pd_error(x, "%s: bad template for specIrregularity", x->x_arrayname->s_name);
else
{
startSamp = 0;
lengthSamp = x->x_arrayPoints;
if(lengthSamp > x->powersOfTwo[x->powTwoArrSize-1])
{
post("WARNING: specIrregularity: window truncated because requested size is larger than the current max_window setting. Use the max_window method to allow larger windows. Sizes of more than 131072 may produce unreliable results.");
lengthSamp = x->powersOfTwo[x->powTwoArrSize-1];
window = lengthSamp;
}
specIrregularity_analyze(x, startSamp, lengthSamp);
}
}
static void specIrregularity_set(t_specIrregularity *x, t_symbol *s)
{
t_garray *a;
if(!(a = (t_garray *)pd_findbyclass(s, garray_class)))
pd_error(x, "%s: no such array", s->s_name);
else if(!garray_getfloatwords(a, &x->x_arrayPoints, &x->x_vec))
pd_error(x, "%s: bad template for specIrregularity", s->s_name);
else
x->x_arrayname = s;
}
static void specIrregularity_print(t_specIrregularity *x)
{
post("algorithm: %i", x->algorithm);
post("samplerate: %f", x->sr);
post("window: %f", x->window);
post("normalize: %i", x->normalize);
post("power spectrum: %i", x->powerSpectrum);
post("window function: %i", x->windowFunction);
}
static void specIrregularity_samplerate(t_specIrregularity *x, t_floatarg sr)
{
if(sr<64)
x->sr = 64;
else
x->sr = sr;
}
static void specIrregularity_max_window(t_specIrregularity *x, t_floatarg w)
{
int i;
if(w<64)
x->maxWindowSize = 64;
else
x->maxWindowSize = w;
x->powersOfTwo = (int *)t_resizebytes(x->powersOfTwo, x->powTwoArrSize*sizeof(int), sizeof(int));
x->powersOfTwo[0] = 64; // must have at least this large of a window
i=1;
while(x->powersOfTwo[i-1] < x->maxWindowSize)
{
x->powersOfTwo = (int *)t_resizebytes(x->powersOfTwo, (i)*sizeof(int), (i+1)*sizeof(int));
x->powersOfTwo[i] = pow(2, i+6); // +6 because we're starting at 2**6
i++;
}
x->powTwoArrSize = i;
post("maximum window size: %i", x->maxWindowSize);
}
static void specIrregularity_windowFunction(t_specIrregularity *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_powerSpectrum(t_specIrregularity *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 specIrregularity computation.");
else
post("using magnitude spectrum for specIrregularity computation.");
}
static void specIrregularity_normalize(t_specIrregularity *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_algorithm(t_specIrregularity *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_new(t_symbol *s, t_floatarg algorithm)
{
t_specIrregularity *x = (t_specIrregularity *)pd_new(specIrregularity_class);
int i;
t_garray *a;
x->x_irregularity = outlet_new(&x->x_obj, &s_float);
if(algorithm)
{
x->x_arrayname = s;
if(!(a = (t_garray *)pd_findbyclass(x->x_arrayname, garray_class)))
;
else if(!garray_getfloatwords(a, &x->x_arrayPoints, &x->x_vec))
pd_error(x, "%s: bad template for specIrregularity", x->x_arrayname->s_name);
algorithm = (algorithm<0)?0:algorithm;
algorithm = (algorithm>1)?1:algorithm;
x->algorithm = algorithm;
}
else if(s)
{
x->x_arrayname = s;
if(!(a = (t_garray *)pd_findbyclass(x->x_arrayname, garray_class)))
;
else if(!garray_getfloatwords(a, &x->x_arrayPoints, &x->x_vec))
pd_error(x, "%s: bad template for specIrregularity", x->x_arrayname->s_name);
x->algorithm = 0;
}
else
error("specIrregularity: no array specified.");
x->sr = 44100.0;
x->window = 1; // should be a bogus size initially to force the proper resizes when a real _analyze request comes through
x->windowFuncSize = 1;
x->windowFunction = 4; // 4 is hann window
x->powerSpectrum = 0; // choose mag (0) or power (1) spec in the specIrregularity computation
x->normalize = 1;
x->maxWindowSize = MAXWINDOWSIZE; // this seems to be the maximum size allowable by mayer_realfft();
x->powersOfTwo = (int *)t_getbytes(sizeof(int));
x->powersOfTwo[0] = 64; // must have at least this large of a window
i=1;
while(x->powersOfTwo[i-1] < x->maxWindowSize)
{
x->powersOfTwo = (int *)t_resizebytes(x->powersOfTwo, i*sizeof(int), (i+1)*sizeof(int));
x->powersOfTwo[i] = pow(2, i+6); // +6 because we're starting at 2**6
i++;
}
x->powTwoArrSize = i;
x->signal_R = (t_sample *)t_getbytes(x->window*sizeof(t_sample));
for(i=0; i<x->window; i++)
x->signal_R[i] = 0.0;
x->blackman = (t_float *)t_getbytes(x->windowFuncSize*sizeof(t_float));
x->cosine = (t_float *)t_getbytes(x->windowFuncSize*sizeof(t_float));
x->hamming = (t_float *)t_getbytes(x->windowFuncSize*sizeof(t_float));
x->hann = (t_float *)t_getbytes(x->windowFuncSize*sizeof(t_float));
// initialize signal windowing functions
tIDLib_blackmanWindow(x->blackman, x->windowFuncSize);
tIDLib_cosineWindow(x->cosine, x->windowFuncSize);
tIDLib_hammingWindow(x->hamming, x->windowFuncSize);
tIDLib_hannWindow(x->hann, x->windowFuncSize);
return (x);
}
static void specIrregularity_free(t_specIrregularity *x)
{
// free the input buffer memory
t_freebytes(x->signal_R, x->window*sizeof(t_sample));
// free the window memory
t_freebytes(x->blackman, x->windowFuncSize*sizeof(t_float));
t_freebytes(x->cosine, x->windowFuncSize*sizeof(t_float));
t_freebytes(x->hamming, x->windowFuncSize*sizeof(t_float));
t_freebytes(x->hann, x->windowFuncSize*sizeof(t_float));
// free the powers of two table
t_freebytes(x->powersOfTwo, x->powTwoArrSize*sizeof(int));
}
void specIrregularity_setup(void)
{
specIrregularity_class =
class_new(
gensym("specIrregularity"),
(t_newmethod)specIrregularity_new,
(t_method)specIrregularity_free,
sizeof(t_specIrregularity),
CLASS_DEFAULT,
A_DEFSYM,
A_DEFFLOAT,
0
);
class_addbang(specIrregularity_class, specIrregularity_bang);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_analyze,
gensym("analyze"),
A_DEFFLOAT,
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_set,
gensym("set"),
A_SYMBOL,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_print,
gensym("print"),
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_samplerate,
gensym("samplerate"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_max_window,
gensym("max_window"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_windowFunction,
gensym("window_function"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_powerSpectrum,
gensym("power_spectrum"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_normalize,
gensym("normalize"),
A_DEFFLOAT,
0
);
class_addmethod(
specIrregularity_class,
(t_method)specIrregularity_algorithm,
gensym("algorithm"),
A_DEFFLOAT,
0
);
}