whisper_init_from_buffer_with_params method

Pointer<whisper_context> whisper_init_from_buffer_with_params(
  1. Pointer<Void> buffer,
  2. int buffer_size,
  3. whisper_context_params params
)

Implementation

ffi.Pointer<whisper_context> whisper_init_from_buffer_with_params(
  ffi.Pointer<ffi.Void> buffer,
  int buffer_size,
  whisper_context_params params,
) {
  return _whisper_init_from_buffer_with_params(
    buffer,
    buffer_size,
    params,
  );
}