whisper_ctx_init_openvino_encoder method

int whisper_ctx_init_openvino_encoder(
  1. Pointer<whisper_context> ctx,
  2. Pointer<Char> model_path,
  3. Pointer<Char> device,
  4. Pointer<Char> cache_dir,
)

Implementation

int whisper_ctx_init_openvino_encoder(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<ffi.Char> model_path,
  ffi.Pointer<ffi.Char> device,
  ffi.Pointer<ffi.Char> cache_dir,
) {
  return _whisper_ctx_init_openvino_encoder(
    ctx,
    model_path,
    device,
    cache_dir,
  );
}