aubio_source_pad_multi_output method

void aubio_source_pad_multi_output(
  1. Pointer<fmat_t> read_data,
  2. int source_channels,
  3. int source_read
)

pad end of source output matrix with zeroes

\param read_data output matrix to pad \param source_channels number of channels in the source \param source_read number of frames read

Implementation

void aubio_source_pad_multi_output(
  ffi.Pointer<fmat_t> read_data,
  int source_channels,
  int source_read,
) {
  return _aubio_source_pad_multi_output(
    read_data,
    source_channels,
    source_read,
  );
}