Changeset 4d75b46 for src/io/sink.c
- Timestamp:
- Jul 13, 2012, 9:05:32 PM (12 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:
- 3504dfe7
- Parents:
- eae5898
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink.c
reae5898 r4d75b46 30 30 31 31 aubio_sink_t * new_aubio_sink(char_t * uri, uint_t hop_size, uint_t samplerate) { 32 return NULL; 32 aubio_sink_t * s = AUBIO_NEW(aubio_sink_t); 33 return s; 33 34 } 34 35 35 uint_t aubio_sink_do(aubio_sink_t * s, fvec_t * write_data) { 36 return 0; 36 void aubio_sink_do(aubio_sink_t * s, fvec_t * write_data, uint_t * written) { 37 37 } 38 38 39 39 void del_aubio_sink(aubio_sink_t * s) { 40 AUBIO_FREE(s); 40 41 return; 41 42 }
Note: See TracChangeset
for help on using the changeset viewer.