whisper_full_with_state method
int
whisper_full_with_state(
- Pointer<
whisper_context> ctx, - Pointer<
whisper_state> state, - whisper_full_params params,
- Pointer<
Float> samples, - int n_samples,
Implementation
int whisper_full_with_state(
ffi.Pointer<whisper_context> ctx,
ffi.Pointer<whisper_state> state,
whisper_full_params params,
ffi.Pointer<ffi.Float> samples,
int n_samples,
) {
return _whisper_full_with_state(
ctx,
state,
params,
samples,
n_samples,
);
}