コード例 #1
0
ファイル: dio.cpp プロジェクト: r9y9/WORLD
DLLEXPORT void Dio(double *x, int x_length, int fs, const DioOption option,
    double *time_axis, double *f0) {
  DioGeneralBody(x, x_length, fs, option.frame_period, option.f0_floor,
      option.f0_ceil, option.channels_in_octave, option.speed,
      option.allowed_range, time_axis, f0);
}
コード例 #2
0
ファイル: dio.cpp プロジェクト: CSTR-Edinburgh/merlin
void Dio(const double *x, int x_length, int fs, const DioOption *option,
    double *time_axis, double *f0) {
  DioGeneralBody(x, x_length, fs, option->frame_period, option->f0_floor,
      option->f0_ceil, option->channels_in_octave, option->speed,
      option->allowed_range, time_axis, f0);
}