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); }
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); }