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
|
%module pysms
%{
#include "sms.h"
#define SWIG_FILE_WITH_INIT
%}
%include "../common/numpy.i"
%init
%{
import_array();
sms_init(); /* initialize the library (makes some tables, seeds the random number generator, etc */
%}
%exception
{
$action
if (sms_errorCheck())
{
PyErr_SetString(PyExc_IndexError,sms_errorString());
return NULL;
}
}
/* apply all numpy typemaps to various names in sms.h */
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeWindow, double* pWindow)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeWaveform, double* pWaveform)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(long sizeSound, double* pSound)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeFft, double* pArray)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeFft, double* pFftBuffer)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeFreq, double* pFreq)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeAmp, double* pAmp)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeMag, double* pMag)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizePhase, double* pPhase)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeRes, double* pRes)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeCepstrum, double* pCepstrum)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeEnv, double* pEnv)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeTrack, double* pTrack)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeArray, double* pArray)};
%apply (int DIM1, double* IN_ARRAY1) {(int sizeInArray, double* pInArray)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeOutArray, double* pOutArray)};
%apply (int DIM1, double* INPLACE_ARRAY1) {(int sizeHop, double* pSynthesis)};
%apply (int DIM1, double* IN_ARRAY1)
{
(int numamps, double* amps),
(int numfreqs, double* freqs),
(int numphases, double* phases)
}
%apply (int DIM1, double* IN_ARRAY1)
{
(int sizeSynthesis, double* pSynthesis),
(int sizeOriginal, double* pOriginal),
(int sizeResidual, double* pResidual)
}
%include "sms.h"
/* overload the functions that will be wrapped to fit numpy typmaps (defined below)
* by renaming the wrapped names back to originals
*/
%rename (sms_detectPeaks) simplsms_detectPeaks;
%rename (sms_spectrum) simplsms_spectrum;
%rename (sms_spectrumMag) simplsms_spectrumMag;
%rename (sms_windowCentered) simplsms_windowCentered;
%rename (sms_invSpectrum) simplsms_invSpectrum;
%rename (sms_dCepstrum) simplsms_dCepstrum;
%rename (sms_synthesize) simplsms_synthesize_wrapper;
%inline
%{
typedef struct
{
SMS_Header *header;
SMS_Data *smsData;
int allocated;
} SMS_File;
void simplsms_dCepstrum( int sizeCepstrum, sfloat *pCepstrum, int sizeFreq, sfloat *pFreq, int sizeMag, sfloat *pMag,
sfloat fLambda, int iSamplingRate)
{
sms_dCepstrum(sizeCepstrum,pCepstrum, sizeFreq, pFreq, pMag,
fLambda, iSamplingRate);
}
int simplsms_detectPeaks(int sizeMag, sfloat *pMag, int sizePhase, sfloat *pPhase,
SMS_SpectralPeaks *pPeakStruct, SMS_PeakParams *pPeakParams)
{
if(sizeMag != sizePhase)
{
sms_error("sizeMag != sizePhase");
return 0;
}
if(pPeakStruct->nPeaks < pPeakParams->iMaxPeaks)
{
sms_error("nPeaks in SMS_SpectralPeaks is not large enough (less than SMS_PeakParams.iMaxPeaks)");
return 0;
}
pPeakStruct->nPeaksFound = sms_detectPeaks(sizeMag, pMag, pPhase, pPeakStruct->pSpectralPeaks, pPeakParams);
return pPeakStruct->nPeaksFound;
}
int simplsms_spectrum( int sizeWaveform, sfloat *pWaveform, int sizeWindow, sfloat *pWindow,
int sizeMag, sfloat *pMag, int sizePhase, sfloat *pPhase)
{
return(sms_spectrum(sizeWindow, pWaveform, pWindow, sizeMag, pMag, pPhase));
}
int simplsms_spectrumMag( int sizeWaveform, sfloat *pWaveform, int sizeWindow, sfloat *pWindow,
int sizeMag, sfloat *pMag)
{
return(sms_spectrumMag(sizeWindow, pWaveform, pWindow, sizeMag, pMag));
}
int simplsms_invSpectrum( int sizeWaveform, sfloat *pWaveform, int sizeWindow, sfloat *pWindow,
int sizeMag, sfloat *pMag, int sizePhase, sfloat *pPhase)
{
return(sms_invSpectrum(sizeWaveform, pWaveform, pWindow, sizeMag, pMag, pPhase));
}
void simplsms_windowCentered(int sizeWaveform, sfloat *pWaveform, int sizeWindow,
sfloat *pWindow, int sizeFft, sfloat *pFftBuffer)
{
if (sizeWaveform != sizeWindow)
{
sms_error("sizeWaveform != sizeWindow");
return;
}
sms_windowCentered(sizeWindow, pWaveform, pWindow, sizeFft, pFftBuffer);
}
void simplsms_synthesize_wrapper(SMS_Data *pSmsData, int sizeHop, sfloat *pSynthesis, SMS_SynthParams *pSynthParams)
{
if(sizeHop != pSynthParams->sizeHop)
{
sms_error("sizeHop != pSynthParams->sizeHop");
return;
}
sms_synthesize(pSmsData, pSynthesis, pSynthParams);
}
%}
%extend SMS_File
{
/* load an entire file to an internal numpy array */
void load( char *pFilename )
{
int i;
FILE *pSmsFile;
$self->allocated = 0;
sms_getHeader (pFilename, &$self->header, &pSmsFile);
if(sms_errorCheck()) return;
$self->smsData = calloc($self->header->nFrames, sizeof(SMS_Data));
for( i = 0; i < $self->header->nFrames; i++ )
{
sms_allocFrameH ($self->header, &$self->smsData[i]);
if(sms_errorCheck()) return;
sms_getFrame (pSmsFile, $self->header, i, &$self->smsData[i]);
if(sms_errorCheck()) return;
}
$self->allocated = 1;
return;
}
void close(void) /* todo: this should be in the destructor, no? */
{
int i;
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return;
}
$self->allocated = 0;
for( i = 0; i < $self->header->nFrames; i++)
sms_freeFrame(&$self->smsData[i]);
free($self->smsData);
return;
}
/* return a pointer to a frame, which can be passed around to other libsms functions */
void getFrame(int i, SMS_Data *frame)
{
if(i < 0 || i >= $self->header->nFrames)
{
sms_error("index is out of file boundaries");
return;
}
frame = &$self->smsData[i];
}
void getTrack(int track, int sizeFreq, sfloat *pFreq, int sizeAmp,
sfloat *pAmp)
{
/* fatal error protection first */
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if(track >= $self->header->nTracks)
{
sms_error("desired track is greater than number of tracks in file");
return;
}
if(sizeFreq != sizeAmp)
{
sms_error("freq and amp arrays are different in size");
return;
}
/* make sure arrays are big enough, or return less data */
int nFrames = MIN (sizeFreq, $self->header->nFrames);
int i;
for( i=0; i < nFrames; i++)
{
pFreq[i] = $self->smsData[i].pFSinFreq[track];
pAmp[i] = $self->smsData[i].pFSinAmp[track];
}
}
// TODO turn into getTrackP - and check if phase exists
void getTrack(int track, int sizeFreq, sfloat *pFreq, int sizeAmp,
sfloat *pAmp, int sizePhase, sfloat *pPhase)
{
/* fatal error protection first */
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if(track >= $self->header->nTracks)
{
sms_error("desired track is greater than number of tracks in file");
return;
}
if(sizeFreq != sizeAmp)
{
sms_error("freq and amp arrays are different in size");
return;
}
/* make sure arrays are big enough, or return less data */
int nFrames = MIN (sizeFreq, $self->header->nFrames);
int i;
for( i=0; i < nFrames; i++)
{
pFreq[i] = $self->smsData[i].pFSinFreq[track];
pAmp[i] = $self->smsData[i].pFSinFreq[track];
}
if($self->header->iFormat < SMS_FORMAT_HP) return;
if(sizePhase != sizeFreq || sizePhase != sizeAmp)
{
sms_error("phase array and freq/amp arrays are different in size");
return;
}
for( i=0; i < nFrames; i++)
pPhase[i] = $self->smsData[i].pFSinPha[track];
return;
}
void getFrameDet(int i, int sizeFreq, sfloat *pFreq, int sizeAmp, sfloat *pAmp)
{
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if(i >= $self->header->nFrames)
{
sms_error("index is greater than number of frames in file");
return;
}
int nTracks = $self->smsData[i].nTracks;
if(sizeFreq > nTracks)
{
sms_error("index is greater than number of frames in file");
return;
}
if(sizeFreq != sizeAmp)
{
sms_error("freq and amp arrays are different in size");
return;
}
memcpy(pFreq, $self->smsData[i].pFSinFreq, sizeof(sfloat) * nTracks);
memcpy(pAmp, $self->smsData[i].pFSinAmp, sizeof(sfloat) * nTracks);
if($self->header->iFormat < SMS_FORMAT_HP) return;
return;
}
void getFrameDetP(int i, int sizeFreq, sfloat *pFreq, int sizeAmp,
sfloat *pAmp, int sizePhase, sfloat *pPhase)
{
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if($self->header->iFormat < SMS_FORMAT_HP)
{
sms_error("file does not contain a phase component in Deterministic (iFormat < SMS_FORMAT_HP)");
return;
}
if(i >= $self->header->nFrames)
{
sms_error("index is greater than number of frames in file");
return;
}
int nTracks = $self->smsData[i].nTracks;
if(sizeFreq > nTracks)
{
sms_error("index is greater than number of frames in file");
return;
}
if(sizeFreq != sizeAmp)
{
sms_error("freq and amp arrays are different in size");
return;
}
memcpy(pFreq, $self->smsData[i].pFSinFreq, sizeof(sfloat) * nTracks);
memcpy(pAmp, $self->smsData[i].pFSinAmp, sizeof(sfloat) * nTracks);
if(sizePhase != sizeFreq || sizePhase != sizeAmp)
{
sms_error("phase array and freq/amp arrays are different in size");
return;
}
memcpy(pPhase, $self->smsData[i].pFSinPha, sizeof(sfloat) * nTracks);
return;
}
void getFrameRes(int i, int sizeRes, sfloat *pRes)
{
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if($self->header->iStochasticType < 1)
{
sms_error("file does not contain a stochastic component");
return ;
}
int nCoeff = sizeRes;
if($self->header->nStochasticCoeff > sizeRes)
nCoeff = $self->header->nStochasticCoeff; // return what you can
memcpy(pRes, $self->smsData[i].pFStocCoeff, sizeof(sfloat) * nCoeff);
return;
}
void getFrameEnv(int i, int sizeEnv, sfloat *pEnv)
{
if(!$self->allocated)
{
sms_error("file not yet alloceted");
return ;
}
if($self->header->iEnvType < 1)
{
sms_error("file does not contain a spectral envelope");
return ;
}
int nCoeff = sizeEnv;
if($self->header->nStochasticCoeff > sizeEnv)
nCoeff = $self->header->nEnvCoeff; // return what you can
memcpy(pEnv, $self->smsData[i].pSpecEnv, sizeof(sfloat) * nCoeff);
return;
}
}
%extend SMS_AnalParams
{
SMS_AnalParams()
{
SMS_AnalParams *s = (SMS_AnalParams *)malloc(sizeof(SMS_AnalParams));
sms_initAnalParams(s);
return s;
}
}
%extend SMS_SynthParams
{
SMS_SynthParams()
{
SMS_SynthParams *s = (SMS_SynthParams *)malloc(sizeof(SMS_SynthParams));
sms_initSynthParams(s);
return s;
}
}
%extend SMS_SpectralPeaks
{
SMS_SpectralPeaks(int n)
{
SMS_SpectralPeaks *s = (SMS_SpectralPeaks *)malloc(sizeof(SMS_SpectralPeaks));
s->nPeaks = n;
if ((s->pSpectralPeaks =
(SMS_Peak *)calloc (s->nPeaks, sizeof(SMS_Peak))) == NULL)
{
sms_error("could not allocate memory for spectral peaks");
return(NULL);
}
s->nPeaksFound = 0;
return s;
}
void getFreq( int sizeArray, sfloat *pArray )
{
if(sizeArray < $self->nPeaksFound)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nPeaksFound; i++)
pArray[i] = $self->pSpectralPeaks[i].fFreq;
}
void getMag( int sizeArray, sfloat *pArray )
{
if(sizeArray < $self->nPeaksFound)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nPeaksFound; i++)
pArray[i] = $self->pSpectralPeaks[i].fMag;
}
void getPhase( int sizeArray, sfloat *pArray )
{
if(sizeArray < $self->nPeaksFound)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nPeaksFound; i++)
pArray[i] = $self->pSpectralPeaks[i].fPhase;
}
}
%extend SMS_Data
{
void getSinAmp(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
pArray[i] = $self->pFSinAmp[i];
}
void getSinFreq(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
pArray[i] = $self->pFSinFreq[i];
}
void getSinPhase(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
pArray[i] = $self->pFSinPha[i];
}
void getSinEnv(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nEnvCoeff)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nEnvCoeff; i++)
pArray[i] = $self->pSpecEnv[i];
}
void setSinAmp(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
$self->pFSinAmp[i] = pArray[i];
}
void setSinFreq(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
$self->pFSinFreq[i] = pArray[i];
}
void setSinPha(int sizeArray, sfloat *pArray)
{
if(sizeArray < $self->nTracks)
{
sms_error("numpy array not big enough");
return;
}
int i;
for (i = 0; i < $self->nTracks; i++)
$self->pFSinPha[i] = pArray[i];
}
}
%extend SMS_ModifyParams
{
/* no need to return an error code, if sms_error is called, it will throw an exception in python */
void setSinEnv(int sizeArray, sfloat *pArray)
{
if(!$self->ready)
{
sms_error("modify parameter structure has not been initialized");
return;
}
if(sizeArray != $self->sizeSinEnv)
{
sms_error("numpy array is not equal to envelope size");
return;
}
memcpy($self->sinEnv, pArray, sizeof(sfloat) * $self->sizeSinEnv);
}
}
|