ailiaVoiceExtractFullContext method

int ailiaVoiceExtractFullContext(
  1. Pointer<AILIAVoice> net,
  2. Pointer<Char> utf8
)

~japanese @brief ExtractFullContextを行います。 @param net ボイスオブジェクトポインタ @param text テキスト(UTF8) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details 認識した結果はailiaVoiceGetFeaturesAPIで取得します。

~english @brief Perform ExtractFullContext @param net A Voice instance pointer @param text Text (UTF8) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details Get the result with ailiaVoiceGetFeatures API.

Implementation

int ailiaVoiceExtractFullContext(
  ffi.Pointer<AILIAVoice> net,
  ffi.Pointer<ffi.Char> utf8,
) {
  return _ailiaVoiceExtractFullContext(
    net,
    utf8,
  );
}