whisper_lang_auto_detect_with_state method

int whisper_lang_auto_detect_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. int offset_ms,
  4. int n_threads,
  5. Pointer<Float> lang_probs,
)

Implementation

int whisper_lang_auto_detect_with_state(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<whisper_state> state,
  int offset_ms,
  int n_threads,
  ffi.Pointer<ffi.Float> lang_probs,
) {
  return _whisper_lang_auto_detect_with_state(
    ctx,
    state,
    offset_ms,
    n_threads,
    lang_probs,
  );
}