Changeset 98893c5 for src/pitchschmitt.c


Ignore:
Timestamp:
Jun 3, 2006, 5:15:07 PM (18 years ago)
Author:
Paul Brossier <piem@altern.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:
73883af
Parents:
b33e355
Message:

fix signed/unsigned mismatches in pitchscmitt
fix signed/unsigned mismatches in pitchscmitt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitchschmitt.c

    rb33e355 r98893c5  
    6262  for (i=0; i<nframes; i++) {
    6363    *schmittPointer++ = indata[i];
    64     if (schmittPointer-schmittBuffer >= blockSize) {
     64    if (schmittPointer-schmittBuffer >= (sint_t)blockSize) {
    6565      sint_t endpoint, startpoint, t1, t2, A1, A2, tc, schmittTriggered;
    6666
Note: See TracChangeset for help on using the changeset viewer.