source: tests/src/temporal/test-c_weighting.c @ ac4a6b8

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since ac4a6b8 was 158e031, checked in by Paul Brossier <piem@piem.org>, 11 years ago

tests/: add void to prototypes to build with -Wstrict-prototypes

  • Property mode set to 100644
File size: 764 bytes
RevLine 
[a4364b8]1#include <aubio.h>
2
[158e031]3int main (void)
[3684ab4]4{
[a4364b8]5  aubio_filter_t * f;
6
7  uint_t rates[] = { 8000, 16000, 22050, 44100, 96000, 192000};
8  uint_t nrates = 6;
9  uint_t samplerate, i = 0;
10
11  for ( samplerate = rates[i]; i < nrates ; i++ ) {
[aea235c]12    f = new_aubio_filter_c_weighting (samplerate);
[a4364b8]13    del_aubio_filter (f);
14
[aea235c]15    f = new_aubio_filter (5);
[59c046d]16    aubio_filter_set_c_weighting (f, samplerate);
[a4364b8]17    del_aubio_filter (f);
18  }
19
20  // samplerate unknown
[aea235c]21  f = new_aubio_filter_c_weighting (4200);
[a4364b8]22  del_aubio_filter (f);
23
24  // order to small
[aea235c]25  f = new_aubio_filter (2);
[59c046d]26  aubio_filter_set_c_weighting (f, samplerate);
[a4364b8]27  del_aubio_filter (f);
28
29  // order to big
[aea235c]30  f = new_aubio_filter (12);
[59c046d]31  aubio_filter_set_c_weighting (f, samplerate);
[a4364b8]32  del_aubio_filter (f);
33
34  return 0;
35}
36
Note: See TracBrowser for help on using the repository browser.