source: tests/src/spectral/test-tss.c @ 6938a20

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 6938a20 was 6938a20, checked in by Paul Brossier <piem@piem.org>, 11 years ago

tests/src/spectral/: improve examples

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[45c0f16]1#include <aubio.h>
[787b5e4]2
[6938a20]3int main ()
4{
5  uint_t n = 10; // compute n times
6  uint_t win_s = 1024; // window size
7  uint_t hop_s = 256;  // hop size
8
9  // create some vectors
10  fvec_t * in       = new_fvec (hop_s); // input buffer
11  cvec_t * fftgrain = new_cvec (win_s); // fft norm and phase
12  cvec_t * cstead   = new_cvec (win_s); // fft norm and phase
13  cvec_t * ctrans   = new_cvec (win_s); // fft norm and phase
14  fvec_t * stead    = new_fvec (hop_s); // output buffer
15  fvec_t * trans    = new_fvec (hop_s); // output buffer
16
17  // create phase vocoder for analysis of input signal
[9d6001cb]18  aubio_pvoc_t * pv = new_aubio_pvoc (win_s,hop_s);
[6938a20]19  // create transient/steady-state separation object
20  aubio_tss_t *  tss = new_aubio_tss(win_s,hop_s);
21  // create phase vocoder objects for synthesis of output signals
[9d6001cb]22  aubio_pvoc_t * pvt = new_aubio_pvoc(win_s,hop_s);
23  aubio_pvoc_t * pvs = new_aubio_pvoc(win_s,hop_s);
24
25  /* execute stft */
[6938a20]26  while ( n-- ) {
27    // fftgrain = pv(in)
28    aubio_pvoc_do (pv, in, fftgrain);
29    // ctrans, cstead = tss (fftgrain)
30    aubio_tss_do (tss, fftgrain, ctrans, cstead);
31    // stead = pvt_inverse (cstead)
32    // trans = pvt_inverse (ctrans)
33    aubio_pvoc_rdo (pvt, cstead, stead);
34    aubio_pvoc_rdo (pvs, ctrans, trans);
[9d6001cb]35  }
36
37  del_aubio_pvoc(pv);
38  del_aubio_pvoc(pvt);
39  del_aubio_pvoc(pvs);
40  del_aubio_tss(tss);
41
42  del_fvec(in);
43  del_cvec(fftgrain);
44  del_cvec(cstead);
45  del_cvec(ctrans);
46  del_fvec(stead);
47  del_fvec(trans);
[6938a20]48
[9d6001cb]49  aubio_cleanup();
[6938a20]50
[9d6001cb]51  return 0;
[787b5e4]52}
Note: See TracBrowser for help on using the repository browser.