ailiaVoiceGetFeatureLength method

int ailiaVoiceGetFeatureLength(
  1. Pointer<AILIAVoice> net,
  2. Pointer<UnsignedInt> len
)

~japanese @brief フィーチャーの長さを取得します。(NULL文字含む) @param net ボイスオブジェクトポインタ @param len フィーチャーの長さ @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Gets the size of features. (Include null) @param net A Voice instance pointer @param len The length of features @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaVoiceGetFeatureLength(
  ffi.Pointer<AILIAVoice> net,
  ffi.Pointer<ffi.UnsignedInt> len,
) {
  return _ailiaVoiceGetFeatureLength(
    net,
    len,
  );
}