whisper_encode_with_state method

int whisper_encode_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. int offset,
  4. int n_threads,
)

Implementation

int whisper_encode_with_state(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<whisper_state> state,
  int offset,
  int n_threads,
) {
  return _whisper_encode_with_state(
    ctx,
    state,
    offset,
    n_threads,
  );
}