Commit d64b6c38 authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde

avfilter/af_flanger: use rint instead of floor hack

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarGanesh Ajjanagadde <gajjanagadde@gmail.com>
parent c6bea81a
......@@ -130,7 +130,7 @@ static int config_input(AVFilterLink *inlink)
return AVERROR(ENOMEM);
ff_generate_wave_table(s->wave_shape, AV_SAMPLE_FMT_FLT, s->lfo, s->lfo_length,
floor(s->delay_min * inlink->sample_rate + 0.5),
rint(s->delay_min * inlink->sample_rate),
s->max_samples - 2., 3 * M_PI_2);
return av_samples_alloc_array_and_samples(&s->delay_buffer, NULL,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment