aubio  0.4.0
 All Data Structures Files Functions Variables Typedefs Macros
temporal/test-a_weighting.c
#include <aubio.h>
int main ()
{
uint_t rates[] = { 8000, 16000, 22050, 44100, 96000, 192000};
uint_t nrates = 6;
uint_t samplerate, i = 0;
for ( samplerate = rates[i]; i < nrates ; i++ ) {
f = new_aubio_filter_a_weighting (samplerate);
}
// samplerate unknown
// order to small
// order to big
f = new_aubio_filter (12);
return 0;
}