- Timestamp:
- Mar 22, 2013, 2:36:30 AM (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:
- 18a378e
- Parents:
- ae9fd90
- Location:
- src/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_sndfile.c
rae9fd90 r3d2fe26 27 27 28 28 #include "aubio_priv.h" 29 #include "fvec.h" 30 #include "fmat.h" 29 31 #include "source_sndfile.h" 30 #include "fvec.h"31 32 32 33 #include "temporal/resampler.h" … … 184 185 AUBIO_ERR("source_sndfile: no multi channel resampling yet"); 185 186 return; 186 data = s->input_data->data;187 //data = s->input_data->data; 187 188 } else 188 189 #endif /* HAVE_SAMPLERATE */ … … 200 201 #ifdef HAVE_SAMPLERATE 201 202 if (s->resampler) { 202 aubio_resampler_do(s->resampler, s->input_data, read_data);203 //aubio_resampler_do(s->resampler, s->input_data, read_data); 203 204 } 204 205 #endif /* HAVE_SAMPLERATE */ -
src/io/source_sndfile.h
rae9fd90 r3d2fe26 85 85 86 86 */ 87 void aubio_source_sndfile_do (aubio_source_sndfile_t * s, fmat_t * read_to, uint_t * read);87 void aubio_source_sndfile_do_multi(aubio_source_sndfile_t * s, fmat_t * read_to, uint_t * read); 88 88 89 89 /**
Note: See TracChangeset
for help on using the changeset viewer.