shithub: aubio

ref: b2e706f39a1a65aa55e58f33ac7636e5a4f2f992
dir: /tests/src/temporal/test-aweighting.c/

View raw version
#include <aubio.h>

int main(){
  
  aubio_filter_t * f;

  uint_t rates[] = { 8000, 16000, 22050, 44100, 96000, 192000};
  uint_t nrates = 6;
  uint_t samplerate, i = 0;
  uint_t channels = 2;

  for ( samplerate = rates[i]; i < nrates ; i++ ) {
    f = new_aubio_filter_a_weighting (channels, samplerate);
    del_aubio_filter (f);

    f = new_aubio_filter (7, channels*2);
    aubio_filter_set_a_weighting (f, samplerate);
    del_aubio_filter (f);
  }

  // samplerate unknown
  f = new_aubio_filter_a_weighting (channels, 4200);
  del_aubio_filter (f);

  // order to small
  f = new_aubio_filter (2, channels*2);
  aubio_filter_set_a_weighting (f, samplerate);
  del_aubio_filter (f);

  // order to big
  f = new_aubio_filter (12, channels*2);
  aubio_filter_set_a_weighting (f, samplerate);
  del_aubio_filter (f);

  return 0;
}