Changeset 48b6a52 for tests/src/test-resample.c
- Timestamp:
- Nov 5, 2009, 11:16:29 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:
- 6e57c2e
- Parents:
- 24fde74
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/test-resample.c
r24fde74 r48b6a52 2 2 #include <aubio.h> 3 3 4 int main(){ 5 #if HAVE_SAMPLERATE 6 /* allocate some memory */ 7 uint_t win_s = 1024; /* window size */ 8 uint_t channels = 1; /* number of channel */ 9 smpl_t ratio = 0.5; 10 fvec_t * in = new_fvec (win_s, channels); /* input buffer */ 11 fvec_t * out = new_fvec ((uint_t)(win_s*ratio), channels); /* input buffer */ 12 aubio_resampler_t * o = new_aubio_resampler(0.5, 0); 13 uint_t i = 0; 4 int 5 main () 6 { 7 /* allocate some memory */ 8 uint_t win_s = 1024; /* window size */ 9 uint_t channels = 1; /* number of channel */ 10 smpl_t ratio = 0.5; 11 fvec_t *in = new_fvec (win_s, channels); /* input buffer */ 12 fvec_t *out = new_fvec ((uint_t) (win_s * ratio), channels); /* input buffer */ 13 aubio_resampler_t *o = new_aubio_resampler (0.5, 0); 14 uint_t i = 0; 14 15 15 16 aubio_resampler_do(o,in,out);17 18 16 while (i < 10) { 17 aubio_resampler_do (o, in, out); 18 i++; 19 }; 19 20 20 del_aubio_resampler(o);21 del_fvec(in);22 del_fvec(out);21 del_aubio_resampler (o); 22 del_fvec (in); 23 del_fvec (out); 23 24 24 #else 25 fprintf(stderr, "aubio_resampler_t not compiled in\n"); 26 #endif /* HAVE_SAMPLERATE */ 27 return 0; 25 return 0; 28 26 }
Note: See TracChangeset
for help on using the changeset viewer.