Changeset d4791e5 for src/io/source_sndfile.c
- Timestamp:
- Jan 3, 2014, 12:47:22 AM (11 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:
- 2e01060
- Parents:
- 89e9e71 (diff), 4fe62ba (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_sndfile.c
r89e9e71 rd4791e5 64 64 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * path, uint_t samplerate, uint_t hop_size) { 65 65 aubio_source_sndfile_t * s = AUBIO_NEW(aubio_source_sndfile_t); 66 SF_INFO sfinfo; 66 67 67 68 if (path == NULL) { … … 83 84 84 85 // try opening the file, getting the info in sfinfo 85 SF_INFO sfinfo;86 86 AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo)); 87 87 s->handle = sf_open (s->path, SFM_READ, &sfinfo);
Note: See TracChangeset
for help on using the changeset viewer.