Changeset 43b7c6d for src/tempo/tempo.c


Ignore:
Timestamp:
Nov 2, 2015, 9:22:32 PM (8 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:
5f5edc1
Parents:
2da7526
Message:

src/tempo/tempo.c: remove trailing spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tempo/tempo.c

    r2da7526 r43b7c6d  
    6565  sint_t blockpos;               /** current position in dfframe */
    6666  uint_t winlen;                 /** dfframe bufsize */
    67   uint_t step;                   /** dfframe hopsize */ 
    68   uint_t samplerate;             /** sampling rate of the signal */ 
     67  uint_t step;                   /** dfframe hopsize */
     68  uint_t samplerate;             /** sampling rate of the signal */
    6969  uint_t hop_size;               /** get hop_size */
    7070  uint_t total_frames;           /** total frames since beginning */
     
    9191    aubio_beattracking_do(o->bt,o->dfframe,o->out);
    9292    /* rotate dfframe */
    93     for (i = 0 ; i < winlen - step; i++ ) 
     93    for (i = 0 ; i < winlen - step; i++ )
    9494      o->dfframe->data[i] = o->dfframe->data[i+step];
    95     for (i = winlen - step ; i < winlen; i++ ) 
     95    for (i = winlen - step ; i < winlen; i++ )
    9696      o->dfframe->data[i] = 0.;
    9797    o->blockpos = -1;
Note: See TracChangeset for help on using the changeset viewer.