aubio_sink_validate_input_channels method
validate height of sink input
\param kind the object kind to report on \param path the path to report on \param sink_channels maximum number of channels that can be written \param write_data_height actual height of input matrix
\return write_data_height or the maximum number of channels
Implementation
int aubio_sink_validate_input_channels(
ffi.Pointer<char_t> kind,
ffi.Pointer<char_t> path,
int sink_channels,
int write_data_height,
) {
return _aubio_sink_validate_input_channels(
kind,
path,
sink_channels,
write_data_height,
);
}