source:
tests/src/temporal/test-resampler.c
@
9547247
Last change on this file since 9547247 was 02418f6, checked in by , 12 years ago | |
---|---|
|
|
File size: 504 bytes |
Rev | Line | |
---|---|---|
[9daf018] | 1 | #include <stdio.h> |
[4e9101e] | 2 | #include <aubio.h> |
3 | ||
[48b6a52] | 4 | int |
5 | main () | |
6 | { | |
7 | /* allocate some memory */ | |
8 | uint_t win_s = 1024; /* window size */ | |
9 | smpl_t ratio = 0.5; | |
[aea235c] | 10 | fvec_t *in = new_fvec (win_s); /* input buffer */ |
11 | fvec_t *out = new_fvec ((uint_t) (win_s * ratio)); /* input buffer */ | |
[48b6a52] | 12 | aubio_resampler_t *o = new_aubio_resampler (0.5, 0); |
13 | uint_t i = 0; | |
[4e9101e] | 14 | |
[48b6a52] | 15 | while (i < 10) { |
16 | aubio_resampler_do (o, in, out); | |
17 | i++; | |
18 | }; | |
[4e9101e] | 19 | |
[48b6a52] | 20 | del_aubio_resampler (o); |
21 | del_fvec (in); | |
22 | del_fvec (out); | |
[4e9101e] | 23 | |
[48b6a52] | 24 | return 0; |
[4e9101e] | 25 | } |
Note: See TracBrowser
for help on using the repository browser.