src/temporal/resample.{c,h}: _do function returns void
authorPaul Brossier <piem@piem.org>
Thu, 8 Oct 2009 10:03:08 +0000 (12:03 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 8 Oct 2009 10:03:08 +0000 (12:03 +0200)
src/temporal/resample.c
src/temporal/resample.h

index 7a503f6956a9554c3bdc212e9dea34adf4398a45..458e4805e9f1c5666626d474d47e1b0b62a03c81 100644 (file)
@@ -50,7 +50,7 @@ void del_aubio_resampler(aubio_resampler_t *s) {
        AUBIO_FREE(s);
 }
 
-uint_t aubio_resampler_do (aubio_resampler_t *s, 
+void aubio_resampler_do (aubio_resampler_t *s, 
     fvec_t * input,  fvec_t * output) {
        uint_t i ;
        s->proc->input_frames = input->length;
@@ -64,7 +64,6 @@ uint_t aubio_resampler_do (aubio_resampler_t *s,
                /* do resampling */
                src_process (s->stat, s->proc) ;
        }
-       return AUBIO_OK;
 }      
 
 #endif /* HAVE_SAMPLERATE */
index 4a766067fbd0ab09b3e42fbb5b763482d5b0c3a4..57744886f5a4dd4db71e6c64140cb4305923ab1c 100644 (file)
@@ -35,6 +35,7 @@ extern "C" {
 
 /** resampler object */
 typedef struct _aubio_resampler_t aubio_resampler_t;
+
 /** create resampler object 
 
   \param ratio output_sample_rate / input_sample_rate 
@@ -42,8 +43,10 @@ typedef struct _aubio_resampler_t aubio_resampler_t;
 
 */
 aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type);
+
 /** delete resampler object */
 void del_aubio_resampler(aubio_resampler_t *s);
+
 /** resample input in output
 
   \param s resampler object
@@ -51,7 +54,7 @@ void del_aubio_resampler(aubio_resampler_t *s);
   \param output output buffer of size N*ratio
 
 */
-uint_t aubio_resampler_do (aubio_resampler_t *s, fvec_t * input,  fvec_t * output);
+void aubio_resampler_do (aubio_resampler_t *s, fvec_t * input,  fvec_t * output);
 
 #ifdef __cplusplus
 }