Changeset fe87823


Ignore:
Timestamp:
Dec 31, 2013, 12:17:37 AM (10 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:
c21acb9
Parents:
0546c1f3
Message:

examples/: build with -Wdeclaration-after-statement

Location:
examples
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • examples/aubionotes.c

    r0546c1f3 rfe87823  
    4848void process_block (fvec_t *ibuf, fvec_t *obuf)
    4949{
     50  smpl_t new_pitch, curlevel;
    5051  fvec_zeros(obuf);
    5152  aubio_onset_do(o, ibuf, onset);
    5253
    5354  aubio_pitch_do (pitch, ibuf, pitch_obuf);
    54   smpl_t new_pitch = fvec_get_sample(pitch_obuf, 0);
     55  new_pitch = fvec_get_sample(pitch_obuf, 0);
    5556  if(median){
    5657    note_append(note_buffer, new_pitch);
     
    5859
    5960  /* curlevel is negatif or 1 if silence */
    60   smpl_t curlevel = aubio_level_detection(ibuf, silence_threshold);
     61  curlevel = aubio_level_detection(ibuf, silence_threshold);
    6162  if (fvec_get_sample(onset, 0)) {
    6263    /* test for silence */
  • examples/aubiopitch.c

    r0546c1f3 rfe87823  
    3131void process_block(fvec_t * ibuf, fvec_t * obuf)
    3232{
     33  smpl_t freq;
    3334  aubio_pitch_do (o, ibuf, pitch);
    3435  if ( !usejack && ! sink_uri ) return;
    3536  fvec_zeros(obuf);
    36   smpl_t freq = fvec_get_sample(pitch, 0);
     37  freq = fvec_get_sample(pitch, 0);
    3738  aubio_wavetable_set_amp ( wavetable, aubio_level_lin (ibuf) );
    3839  aubio_wavetable_set_freq ( wavetable, freq );
  • examples/utils.c

    r0546c1f3 rfe87823  
    149149  } else {
    150150    /* phasevoc */
     151    uint_t total_read = 0;
    151152    blocks = 0;
    152     uint_t total_read = 0;
    153153
    154154    do {
Note: See TracChangeset for help on using the changeset viewer.