Changeset eaaba62


Ignore:
Timestamp:
Mar 23, 2013, 1:11:35 AM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
bd1fa89
Parents:
22df684
Message:

src/synth/sampler.c: fix _do_multi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/synth/sampler.c

    r22df684 reaaba62  
    8383    for (i = 0; i < output->height; i++) {
    8484      for (j = 0; j < output->length; j++) {
    85         output->data[i][j] = o->source_output_multi->data[i][j];
     85        output->data[i][j] += o->source_output_multi->data[i][j];
    8686      }
    8787    }
    88     if (read == 0) o->playing = 0;
     88    if ( read < o->blocksize ) o->playing = 0;
    8989  }
    9090  if (input && input != output) {
Note: See TracChangeset for help on using the changeset viewer.