whisper_pcm_to_mel_with_state method

int whisper_pcm_to_mel_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. Pointer<Float> samples,
  4. int n_samples,
  5. int n_threads,
)

Implementation

int whisper_pcm_to_mel_with_state(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<whisper_state> state,
  ffi.Pointer<ffi.Float> samples,
  int n_samples,
  int n_threads,
) {
  return _whisper_pcm_to_mel_with_state(
    ctx,
    state,
    samples,
    n_samples,
    n_threads,
  );
}