Changeset a028a04 for src/io/sink_sndfile.c
- Timestamp:
- Nov 30, 2016, 7:10:10 PM (8 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, sampler, yinfft+
- Children:
- 5d9693c
- Parents:
- 22e991b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink_sndfile.c
r22e991b ra028a04 32 32 #include "io/ioutils.h" 33 33 34 #define MAX_CHANNELS 635 34 #define MAX_SIZE 4096 36 35 … … 149 148 s->scratch_size = s->max_size*s->channels; 150 149 /* allocate data for de/interleaving reallocated when needed. */ 151 if (s->scratch_size >= MAX_SIZE * MAX_CHANNELS) { 150 if (s->scratch_size >= MAX_SIZE * AUBIO_MAX_CHANNELS) { 151 abort(); 152 152 AUBIO_ERR("sink_sndfile: %d x %d exceeds maximum aubio_sink_sndfile buffer size %d\n", 153 s->max_size, s->channels, MAX_ CHANNELS *MAX_CHANNELS);153 s->max_size, s->channels, MAX_SIZE * AUBIO_MAX_CHANNELS); 154 154 return AUBIO_FAIL; 155 155 }
Note: See TracChangeset
for help on using the changeset viewer.