Changeset a028a04 for src/io/sink_wavwrite.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_wavwrite.c
r22e991b ra028a04 32 32 #include <errno.h> 33 33 34 #define MAX_CHANNELS 635 34 #define MAX_SIZE 4096 36 35 … … 221 220 s->scratch_size = s->max_size * s->channels; 222 221 /* allocate data for de/interleaving reallocated when needed. */ 223 if (s->scratch_size >= MAX_SIZE * MAX_CHANNELS) {222 if (s->scratch_size >= MAX_SIZE * AUBIO_MAX_CHANNELS) { 224 223 AUBIO_ERR("sink_wavwrite: %d x %d exceeds SIZE maximum buffer size %d\n", 225 s->max_size, s->channels, MAX_SIZE * MAX_CHANNELS);224 s->max_size, s->channels, MAX_SIZE * AUBIO_MAX_CHANNELS); 226 225 goto beach; 227 226 }
Note: See TracChangeset
for help on using the changeset viewer.