Browse Source

avfilter/af_tremolo: clean up extra newlines

Signed-off-by: Kyle Swanson <k@ylo.ph>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Kyle Swanson Michael Niedermayer 9 years ago
parent
commit
0131636f22
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavfilter/af_tremolo.c

+ 0
- 2
libavfilter/af_tremolo.c View File

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



Loading…
Cancel
Save