示例#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
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);
}