fmat_get_channel_data method

Pointer<smpl_t> fmat_get_channel_data(
  1. Pointer<fmat_t> s,
  2. int channel
)

get vector buffer from an fmat data

\param s vector to read from \param channel channel to read from

Implementation

ffi.Pointer<smpl_t> fmat_get_channel_data(
  ffi.Pointer<fmat_t> s,
  int channel,
) {
  return _fmat_get_channel_data(
    s,
    channel,
  );
}