Changeset 6d3777a for tests/src/io
- Timestamp:
- Mar 6, 2013, 10:32:06 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:
- 3184468
- Parents:
- df9df98
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/io/test-sink_sndfile.c
rdf9df98 r6d3777a 1 1 #define AUBIO_UNSTABLE 1 2 2 #include <aubio.h> 3 #include "config.h" 3 4 #include "utils_tests.h" 4 5 … … 27 28 28 29 fvec_t *vec = new_fvec(hop_size); 29 aubio_source_sndfile_t * i = new_aubio_source_sndfile( path, samplerate, hop_size);30 aubio_source_sndfile_t * i = new_aubio_source_sndfile(source_path, samplerate, hop_size); 30 31 if (samplerate == 0 ) samplerate = aubio_source_sndfile_get_samplerate(i); 31 aubio_sink_sndfile_t * o = new_aubio_sink_sndfile( outpath, samplerate);32 aubio_sink_sndfile_t * o = new_aubio_sink_sndfile(sink_path, samplerate); 32 33 33 34 if (!i || !o) { err = 1; goto beach; }
Note: See TracChangeset
for help on using the changeset viewer.