new_aubio_filter_a_weighting method

Pointer<_aubio_filter_t> new_aubio_filter_a_weighting(
  1. int samplerate
)

create new A-design filter

\param samplerate sampling frequency of the signal to filter. Should be one of 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and 192000 Hz

\return a new filter object

Implementation

ffi.Pointer<_aubio_filter_t> new_aubio_filter_a_weighting(
  int samplerate,
) {
  return _new_aubio_filter_a_weighting(
    samplerate,
  );
}