- Timestamp:
- Aug 9, 2005, 7:56:21 PM (19 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:
- a29ad46
- Parents:
- 28d8c4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
swig/aubio.i
r28d8c4a r5e9c68a 52 52 53 53 /* sndfile */ 54 extern aubio_ file_t * new_file_ro (const char * inputfile);55 extern aubio_ file_t * new_file_wo(aubio_file_t * existingfile, const char * outputname);56 extern void file_info(aubio_file_t * file);57 extern int file_write(aubio_file_t * file, int frames, fvec_t * write);58 extern int file_read(aubio_file_t * file, int frames, fvec_t * read);59 extern int del_ file(aubio_file_t * file);60 extern uint_t aubio_ file_channels(aubio_file_t * file);61 extern uint_t aubio_ file_samplerate(aubio_file_t * file);54 extern aubio_sndfile_t * new_aubio_sndfile_ro (const char * inputfile); 55 extern aubio_sndfile_t * new_aubio_sndfile_wo(aubio_sndfile_t * existingfile, const char * outputname); 56 extern void aubio_sndfile_info(aubio_sndfile_t * file); 57 extern int aubio_sndfile_write(aubio_sndfile_t * file, int frames, fvec_t * write); 58 extern int aubio_sndfile_read(aubio_sndfile_t * file, int frames, fvec_t * read); 59 extern int del_aubio_sndfile(aubio_sndfile_t * file); 60 extern uint_t aubio_sndfile_channels(aubio_sndfile_t * file); 61 extern uint_t aubio_sndfile_samplerate(aubio_sndfile_t * file); 62 62 63 63 /* fft */ … … 159 159 /* pitch detection */ 160 160 typedef enum { 161 aubio_yin,162 aubio_mcomb,163 aubio_ schmitt,164 aubio_ fcomb161 aubio_pitch_yin, 162 aubio_pitch_mcomb, 163 aubio_pitch_schmitt, 164 aubio_pitch_fcomb 165 165 } aubio_pitchdetection_type; 166 166 167 167 typedef enum { 168 aubio_freq,169 aubio_midi,170 aubio_cent,171 aubio_bin168 aubio_pitchm_freq, 169 aubio_pitchm_midi, 170 aubio_pitchm_cent, 171 aubio_pitchm_bin 172 172 } aubio_pitchdetection_mode; 173 173
Note: See TracChangeset
for help on using the changeset viewer.