Commit 0131636f authored by Kyle Swanson's avatar Kyle Swanson Committed by Michael Niedermayer

avfilter/af_tremolo: clean up extra newlines

Signed-off-by: 's avatarKyle Swanson <k@ylo.ph>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 96b165fa
......@@ -131,9 +131,7 @@ static int config_input(AVFilterLink *inlink)
for (i = 0; i < inlink->sample_rate; i++) {
double env = s->freq * i / inlink->sample_rate;
env = sin(2 * M_PI * fmod(env + 0.25, 1.0));
s->table[i] = env * (1 - fabs(offset)) + offset;
}
......
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