whisper_set_mel_with_state method

int whisper_set_mel_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. Pointer<Float> data,
  4. int n_len,
  5. int n_mel,
)

Implementation

int whisper_set_mel_with_state(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<whisper_state> state,
  ffi.Pointer<ffi.Float> data,
  int n_len,
  int n_mel,
) {
  return _whisper_set_mel_with_state(
    ctx,
    state,
    data,
    n_len,
    n_mel,
  );
}