Changeset f218f29 for swig/aubio.i
- Timestamp:
- Nov 7, 2007, 5:03:59 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 10cf306
- Parents:
- ef7df76 (diff), 4368223 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
swig/aubio.i
ref7df76 rf218f29 72 72 73 73 /* fft */ 74 extern void aubio_fft_getnorm(smpl_t * norm, fft_data_t * spectrum, uint_t size); 75 extern void aubio_fft_getphas(smpl_t * phase, fft_data_t * spectrum, uint_t size); 76 77 extern aubio_mfft_t * new_aubio_mfft(uint_t winsize, uint_t channels); 78 extern void aubio_mfft_do (aubio_mfft_t * fft,fvec_t * in,cvec_t * fftgrain); 79 extern void aubio_mfft_rdo(aubio_mfft_t * fft,cvec_t * fftgrain, fvec_t * out); 80 extern void del_aubio_mfft(aubio_mfft_t * fft); 81 74 extern aubio_fft_t * new_aubio_fft(uint_t size, uint_t channels); 75 extern void del_aubio_fft(aubio_fft_t * s); 76 extern void aubio_fft_do (aubio_fft_t *s, fvec_t * input, cvec_t * spectrum); 77 extern void aubio_fft_rdo (aubio_fft_t *s, cvec_t * spectrum, fvec_t * output); 78 extern void aubio_fft_do_complex (aubio_fft_t *s, fvec_t * input, fvec_t * compspec); 79 extern void aubio_fft_rdo_complex (aubio_fft_t *s, fvec_t * compspec, fvec_t * output); 80 extern void aubio_fft_get_spectrum(fvec_t * compspec, cvec_t * spectrum); 81 extern void aubio_fft_get_realimag(cvec_t * spectrum, fvec_t * compspec); 82 extern void aubio_fft_get_phas(fvec_t * compspec, cvec_t * spectrum); 83 extern void aubio_fft_get_imag(cvec_t * spectrum, fvec_t * compspec); 84 extern void aubio_fft_get_norm(fvec_t * compspec, cvec_t * spectrum); 85 extern void aubio_fft_get_real(cvec_t * spectrum, fvec_t * compspec); 82 86 83 87 /* filter */ … … 101 105 extern void aubio_hist_do(aubio_hist_t *s, fvec_t * input); 102 106 extern void aubio_hist_do_notnull(aubio_hist_t *s, fvec_t * input); 103 extern void aubio_hist_dyn_notnull (aubio_hist_t *s, fvec_t *input); 107 extern void aubio_hist_dyn_notnull(aubio_hist_t *s, fvec_t *input); 108 extern void aubio_hist_weight(aubio_hist_t *s); 109 extern smpl_t aubio_hist_mean(aubio_hist_t *s); 104 110 105 111 /* mathutils */
Note: See TracChangeset
for help on using the changeset viewer.