Changeset 06f2d78 for src/temporal


Ignore:
Timestamp:
Oct 8, 2009, 12:03:08 PM (15 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:
9daf018
Parents:
47f17fc
Message:

src/temporal/resample.{c,h}: _do function returns void

Location:
src/temporal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/temporal/resample.c

    r47f17fc r06f2d78  
    5151}
    5252
    53 uint_t aubio_resampler_do (aubio_resampler_t *s,
     53void aubio_resampler_do (aubio_resampler_t *s,
    5454    fvec_t * input,  fvec_t * output) {
    5555        uint_t i ;
     
    6565                src_process (s->stat, s->proc) ;
    6666        }
    67         return AUBIO_OK;
    6867}       
    6968
  • src/temporal/resample.h

    r47f17fc r06f2d78  
    3636/** resampler object */
    3737typedef struct _aubio_resampler_t aubio_resampler_t;
     38
    3839/** create resampler object
    3940
     
    4344*/
    4445aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type);
     46
    4547/** delete resampler object */
    4648void del_aubio_resampler(aubio_resampler_t *s);
     49
    4750/** resample input in output
    4851
     
    5255
    5356*/
    54 uint_t aubio_resampler_do (aubio_resampler_t *s, fvec_t * input,  fvec_t * output);
     57void aubio_resampler_do (aubio_resampler_t *s, fvec_t * input,  fvec_t * output);
    5558
    5659#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.