Changeset a65d37a for src/io


Ignore:
Timestamp:
Sep 5, 2015, 11:43:22 AM (9 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:
385a06e2
Parents:
70ba6dd
Message:

src/io/{sink,source}_sndfile.c: remove spaces and tabs

Location:
src/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink_sndfile.c

    r70ba6dd ra65d37a  
    126126    AUBIO_ERR("sink_sndfile: Failed opening %s. %s\n", s->path, sf_strerror (NULL));
    127127    return AUBIO_FAIL;
    128   }     
     128  }
    129129
    130130  s->scratch_size = s->max_size*s->channels;
     
    141141
    142142void aubio_sink_sndfile_do(aubio_sink_sndfile_t *s, fvec_t * write_data, uint_t write){
    143   uint_t i, j,  channels = s->channels;
     143  uint_t i, j, channels = s->channels;
    144144  int nsamples = 0;
    145145  smpl_t *pwrite;
     
    171171
    172172void aubio_sink_sndfile_do_multi(aubio_sink_sndfile_t *s, fmat_t * write_data, uint_t write){
    173   uint_t i, j,  channels = s->channels;
     173  uint_t i, j, channels = s->channels;
    174174  int nsamples = 0;
    175175  smpl_t *pwrite;
  • src/io/source_sndfile.c

    r70ba6dd ra65d37a  
    9191    AUBIO_ERR("source_sndfile: Failed opening %s: %s\n", s->path, sf_strerror (NULL));
    9292    goto beach;
    93   }     
     93  }
    9494
    9595  /* get input specs */
Note: See TracChangeset for help on using the changeset viewer.