Changeset 06f2d78 for src/temporal
- Timestamp:
- Oct 8, 2009, 12:03:08 PM (15 years ago)
- 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
- Location:
- src/temporal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/temporal/resample.c
r47f17fc r06f2d78 51 51 } 52 52 53 uint_taubio_resampler_do (aubio_resampler_t *s,53 void aubio_resampler_do (aubio_resampler_t *s, 54 54 fvec_t * input, fvec_t * output) { 55 55 uint_t i ; … … 65 65 src_process (s->stat, s->proc) ; 66 66 } 67 return AUBIO_OK;68 67 } 69 68 -
src/temporal/resample.h
r47f17fc r06f2d78 36 36 /** resampler object */ 37 37 typedef struct _aubio_resampler_t aubio_resampler_t; 38 38 39 /** create resampler object 39 40 … … 43 44 */ 44 45 aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type); 46 45 47 /** delete resampler object */ 46 48 void del_aubio_resampler(aubio_resampler_t *s); 49 47 50 /** resample input in output 48 51 … … 52 55 53 56 */ 54 uint_taubio_resampler_do (aubio_resampler_t *s, fvec_t * input, fvec_t * output);57 void aubio_resampler_do (aubio_resampler_t *s, fvec_t * input, fvec_t * output); 55 58 56 59 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.