whisper_pcm_to_mel_with_state method
int
whisper_pcm_to_mel_with_state(
- Pointer<
whisper_context> ctx, - Pointer<
whisper_state> state, - Pointer<
Float> samples, - int n_samples,
- 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,
);
}