Changeset 7b7a58e for src/spectral
- Timestamp:
- Sep 16, 2017, 11:55:51 PM (7 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
- Children:
- bfbfafa
- Parents:
- b99e2a5 (diff), cfb7fb7 (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. - Location:
- src/spectral
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/mfcc.c
rb99e2a5 r7b7a58e 37 37 uint_t win_s; /** grain length */ 38 38 uint_t samplerate; /** sample rate (needed?) */ 39 uint_t n_filters; /** number of *filters */39 uint_t n_filters; /** number of filters */ 40 40 uint_t n_coefs; /** number of coefficients (<= n_filters/2 +1) */ 41 41 aubio_filterbank_t *fb; /** filter bank */ -
src/spectral/phasevoc.c
rb99e2a5 r7b7a58e 142 142 AUBIO_FREE (pv); 143 143 return NULL; 144 } 145 146 uint_t aubio_pvoc_set_window(aubio_pvoc_t *pv, const char_t *window) { 147 return fvec_set_window(pv->w, (char_t*)window); 144 148 } 145 149 -
src/spectral/phasevoc.h
rb99e2a5 r7b7a58e 96 96 uint_t aubio_pvoc_get_hop(aubio_pvoc_t* pv); 97 97 98 /** set window type 99 100 \param pv phase vocoder to set the window type 101 \param window_type a string representing a window 102 103 \return 0 if successful, non-zero otherwise 104 105 */ 106 uint_t aubio_pvoc_set_window(aubio_pvoc_t *pv, const char_t *window_type); 107 98 108 #ifdef __cplusplus 99 109 }
Note: See TracChangeset
for help on using the changeset viewer.