-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfftease_utilities.c
282 lines (261 loc) · 9.24 KB
/
fftease_utilities.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
#include "fftease.h"
#define FFTEASE_LIB_VERSION "FFTease library 3.0"
void fftease_noalias(t_fftease* fft, short flag)
{
fft->noalias = flag;
}
int fftease_fft_size( int testfft )
{
int test = 2;
if( testfft <= 0 )
return DEFAULT_FFTEASE_FFTSIZE;
while( test < testfft && test < FFTEASE_MAX_FFTSIZE){
test *= 2;
}
if( test != testfft ){
post("incorrect FFT size specified, using %d", DEFAULT_FFTEASE_FFTSIZE);
test = DEFAULT_FFTEASE_FFTSIZE;
}
if( test == FFTEASE_MAX_FFTSIZE){
post("fftsize capped at maximum: %d", test);
}
return test;
}
void fftease_set_fft_buffers(t_fftease *fft)
{
if( fft->D <= 0 || fft->MSPVectorSize <= 0 ){
return;
}
// post("setting up FFTease buffers");
fft->operationCount = 0;
if( fft->D > fft->MSPVectorSize ){
fft->operationRepeat = fft->D / fft->MSPVectorSize;
fft->bufferStatus = BIGGER_THAN_MSP_VECTOR;
// post("fftease_set_fft_buffers: bigger than MSP vector");
} else if( fft->D < fft->MSPVectorSize ){
fft->operationRepeat = fft->MSPVectorSize / fft->D;
fft->bufferStatus = SMALLER_THAN_MSP_VECTOR;
// post("fftease_set_fft_buffers: smaller than MSP buffer");
} else {
fft->operationRepeat = 1;
fft->bufferStatus = EQUAL_TO_MSP_VECTOR;
// post("fftease_set_fft_buffers: equal to MSP buffer");
}
}
int fftease_overlap( int overlap )
{
int target = 1;
while( target < overlap && target < 64 ){
target *= 2;
}
if( target != overlap ){
pd_error(0, "fftease_overlap: %d is not a legal overlap factor",overlap);
return 1;
}
return overlap;
}
int fftease_winfac( int winfac)
{
int target = 1;
while( target < winfac && target < 64 ){
target *= 2;
}
if( target != winfac ){
// pd_error(0, "%d is not a legal window factor", winfac);
return 1;
}
return winfac;
}
void fftease_oscbank_setbins(t_fftease *fft, t_float lowfreq, t_float highfreq)
{
if(fft->initialized == -1){
post("oscbank setbins inhibited");
return;
}
t_float curfreq = 0;
fft->hi_bin = 1;
int N2 = fft->N2;
while(curfreq < highfreq){
++(fft->hi_bin);
curfreq += fft->c_fundamental;
}
fft->lo_bin = 0;
curfreq = 0;
while(curfreq < lowfreq){
++(fft->lo_bin);
curfreq += fft->c_fundamental;
}
if(fft->hi_bin > N2)
fft->hi_bin = N2;
// post("lowfreq %f highfreq %f low bin %d high bin %d",lowfreq, highfreq, fft->lo_bin, fft->hi_bin);
}
void fftease_init(t_fftease *fft)
{
int i;
int mem;
if(fft->initialized == -1){
// post("fftease_init manually aborted with initialization status -1");
return;
}
if(!fft->R){
// post("fftease_init: zero sample rate, aborting init");
return;
}
// fft->init_status = 0;
fft->overlap = fftease_overlap(fft->overlap);
fft->winfac = fftease_winfac(fft->winfac);
if(fft->P <= 0)
fft->P = 1.0;
fft->N = fftease_fft_size( fft->N );
fft->D = fft->N / fft->overlap;
fft->Nw = fft->N * fft->winfac;
fft->Iinv = 1.0/fft->D;
fft->N2 = fft->N / 2;
fft->Nw2 = fft->Nw / 2;
fft->in_count = -(fft->Nw);
fft->out_count = fft->in_count;
fft->mult = 1.0 / (t_float) fft->N;
fft->c_fundamental = (t_float) fft->R/(t_float) fft->N;
fft->c_factor_in = (t_float) fft->R/((t_float)fft->D * TWOPI);
fft->c_factor_out = TWOPI * (t_float) fft->D / (t_float) fft->R;
// fft->synt = 0.001;
fft->L = FFTEASE_OSCBANK_TABLESIZE;
fft->pitch_increment = fft->P * fft->L / fft->R;
fft->ffac = fft->P * PI / fft->N;
fft->nyquist = (t_float) fft->R / 2.0;
if(! fft->initialized){
// post("Initializing FFT Memory");
fft->P = 1.0;
fft->obank_flag = 0; // default no oscbank
fft->lo_bin = 0;
fft->hi_bin = fft->N2;
mem = (fft->Nw) * sizeof(t_float);
fft->Wanal = (t_float *) calloc(1,mem);
fft->Wsyn = (t_float *) calloc(1,mem);
fft->Hwin = (t_float *) calloc(1,mem);
fft->input = (t_float *) calloc(1,mem);
fft->output = (t_float *) calloc(1,mem);
mem = (fft->N + 2) * sizeof(t_float);
fft->buffer = (t_float *) calloc(1,mem);
mem = (fft->N + 2) * sizeof(t_float);
fft->channel = (t_float *) calloc(1,mem);
mem = (fft->N * 2) * sizeof(int);
fft->bitshuffle = (int *) calloc(1,mem);
mem = (fft->N*2)*sizeof(t_float);
fft->trigland = (t_float *) calloc(1,mem);
mem = (fft->N2+1)*sizeof(t_float);
fft->c_lastphase_in = (t_float *) calloc(1,mem);
fft->c_lastphase_out = (t_float *)calloc(1,mem);
// oscbank stuff
mem = (fft->N+1)*sizeof(t_float);
fft->lastamp = (t_float *) calloc(1,mem);
fft->lastfreq = (t_float *) calloc(1,mem);
fft->bindex = (t_float *) calloc(1,mem);
mem = (2 + fft->L)*sizeof(t_float); // includes guardpoint
fft->table = (t_float *) calloc(1,mem);
// t_float buffering
mem = fft->D * sizeof(t_float);
fft->internalInputVector = (t_float *) calloc(1,mem);
fft->internalOutputVector = (t_float *) calloc(1,mem);
fft->initialized = 1;
}
else if( (fft->N == fft->last_N) && (fft->overlap == fft->last_overlap) &&
(fft->winfac == fft->last_winfac) && (fft->last_R == fft->R) ) {
//post("fftease_init: no change in vital parameters so memory reallocation skipped");
return;
}
else {
// post("Resizing FFT Memory");
mem = (fft->Nw)*sizeof(t_float);
fft->Wanal = (t_float *) realloc((void *) fft->Wanal, mem);
fft->Wsyn = (t_float *) realloc((void *) fft->Wsyn, mem);
fft->Hwin = (t_float *)realloc((void *) fft->Hwin, mem);
fft->input = (t_float *) realloc((void *) fft->input, mem);
fft->output = (t_float *) realloc((void *) fft->output, mem);
mem = (fft->N + 2)*sizeof(t_float);
fft->buffer = (t_float *) realloc((void *) fft->buffer, mem);
mem = (fft->N+2)*sizeof(t_float);
fft->channel = (t_float *) realloc((void *) fft->channel, mem);
mem = (fft->N*2)*sizeof(int);
fft->bitshuffle = (int *) realloc((void *) fft->bitshuffle, mem);
mem = (fft->N*2)*sizeof(t_float);
fft->trigland = (t_float *) realloc((void *) fft->trigland, mem);
mem = (fft->N2+1)*sizeof(t_float);
fft->c_lastphase_in = (t_float *) realloc((void *) fft->c_lastphase_in, mem);
fft->c_lastphase_out = (t_float *)realloc((void *)fft->c_lastphase_out, mem);
mem = (fft->N+1)*sizeof(t_float);
fft->lastamp = (t_float *) realloc((void *) fft->lastamp, mem);
fft->lastfreq = (t_float *) realloc((void *) fft->lastfreq, mem);
fft->bindex = (t_float *) realloc((void *) fft->bindex, mem);
mem = fft->D * sizeof(t_float);
fft->internalInputVector = (t_float *)realloc((void *) fft->internalInputVector, mem);
fft->internalOutputVector = (t_float *) realloc((void *) fft->internalOutputVector, mem);
}
fft->last_N = fft->N;
fft->last_overlap = fft->overlap;
fft->last_winfac = fft->winfac;
fft->last_R = fft->R;
for ( i = 0; i < fft->L; i++ ) {
fft->table[i] = (t_float) fft->N * cos((t_float)i * TWOPI / (t_float)fft->L);
}
fft->table[fft->L] = fft->table[fft->L - 1]; // guard point
fftease_makewindows( fft->Hwin, fft->Wanal, fft->Wsyn, fft->Nw, fft->N, fft->D);
fftease_init_rdft( fft->N, fft->bitshuffle, fft->trigland);
fftease_set_fft_buffers(fft);
fftease_oscbank_setbins(fft,0,fft->nyquist);
fft->init_status = 1;
}
void fftease_free(t_fftease *fft)
{
if(fft->init_status == 1){
free(fft->trigland);
free(fft->bitshuffle);
free(fft->Wanal);
free(fft->Wsyn);
free(fft->Hwin);
free(fft->buffer);
free(fft->channel); // this is the killer
free(fft->input);
free(fft->output);
free(fft->internalInputVector);
free(fft->internalOutputVector);
free(fft->c_lastphase_in);
free(fft->c_lastphase_out);
free(fft->lastamp);
free(fft->lastfreq);
free(fft->bindex);
free(fft->table);
}
}
void fftease_fftinfo(t_fftease *fft, char *object_name)
{
if( ! fft->overlap ){
post("%s: zero overlap!", object_name);
return;
}
post("%s: FFT size %d, hop size %d, signal vector size %d, sample rate %d", object_name,
fft->N, fft->N/fft->overlap, fft->MSPVectorSize, fft->R);
// post("%s\n", FFTEASE_LIB_VERSION);
}
int fftease_msp_sanity_check(t_fftease *fft, char *oname)
{
if( fft->R <= 0 || fft->R > 10000000 || fft->MSPVectorSize <= 0 || fft->D <= 0){
post("%s is concerned that perhaps no audio driver has been loaded",oname);
post("R: %d, vector size: %d, D: %d", fft->R, fft->MSPVectorSize, fft->D);
return 0;
} else {
return 1;
}
}
t_float fftease_randf(t_float min, t_float max)
{
t_float randv;
randv = (t_float) (rand() % 32768) / 32768.0 ;
return min + (max-min) * randv;
}
int fftease_randi(int min, int max)
{
int randv;
// random values inclusive of min and max
return min + (rand() % (1 + (max - min)));
}