whisper_full_with_state method

int whisper_full_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. whisper_full_params params,
  4. Pointer<Float> samples,
  5. 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,
  );
}