shithub: aubio

Download patch

ref: a65d37a303f0f35cc5543f0ef8f9c8c355659980
parent: 70ba6dd6d181b672203681c62a9a809d8a5fb3d5
author: Paul Brossier <piem@piem.org>
date: Sat Sep 5 07:43:22 EDT 2015

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

--- a/src/io/sink_sndfile.c
+++ b/src/io/sink_sndfile.c
@@ -125,7 +125,7 @@
     /* show libsndfile err msg */
     AUBIO_ERR("sink_sndfile: Failed opening %s. %s\n", s->path, sf_strerror (NULL));
     return AUBIO_FAIL;
-  }	
+  }
 
   s->scratch_size = s->max_size*s->channels;
   /* allocate data for de/interleaving reallocated when needed. */
@@ -140,7 +140,7 @@
 }
 
 void aubio_sink_sndfile_do(aubio_sink_sndfile_t *s, fvec_t * write_data, uint_t write){
-  uint_t i, j,	channels = s->channels;
+  uint_t i, j, channels = s->channels;
   int nsamples = 0;
   smpl_t *pwrite;
   sf_count_t written_frames;
@@ -170,7 +170,7 @@
 }
 
 void aubio_sink_sndfile_do_multi(aubio_sink_sndfile_t *s, fmat_t * write_data, uint_t write){
-  uint_t i, j,	channels = s->channels;
+  uint_t i, j, channels = s->channels;
   int nsamples = 0;
   smpl_t *pwrite;
   sf_count_t written_frames;
--- a/src/io/source_sndfile.c
+++ b/src/io/source_sndfile.c
@@ -90,7 +90,7 @@
     /* show libsndfile err msg */
     AUBIO_ERR("source_sndfile: Failed opening %s: %s\n", s->path, sf_strerror (NULL));
     goto beach;
-  }	
+  }
 
   /* get input specs */
   s->input_samplerate = sfinfo.samplerate;